+2014-04-13 Benno Schulenberg <bensberg@justemail.net>
+ * proto.h, global.c, rcfile.c: Remove unused parameter 'menu'
+ from strtosc().
+
2014-04-10 Benno Schulenberg <bensberg@justemail.net>
* doc/syntax/Makefile.am: Add four recent syntaxes to the packlist.
}
#endif /* !NANO_TINY */
-/* Interpret the string given by the rc file and return a shortcut
- * struct, complete with proper value for execute. */
-sc *strtosc(int menu, char *input)
+/* Interpret a function string given in the rc file, and return a
+ * shortcut struct, complete with the proper value for execute. */
+sc *strtosc(char *input)
{
- sc *s;
+ sc *s;
s = (sc *)nmalloc(sizeof(sc));
- s->execute = TRUE; /* overridden as needed below */
+ s->execute = TRUE; /* will be overridden as needed below */
#ifndef DISABLE_HELP
if (!strcasecmp(input, "help"))
const subnfunc *sctofunc(sc *s);
const subnfunc *getfuncfromkey(WINDOW *win);
void print_sclist(void);
-sc *strtosc(int menu, char *input);
+sc *strtosc(char *input);
function_type strtokeytype(const char *str);
int strtomenu(char *input);
void assign_keyinfo(sc *s);
}
if (dobind) {
- newsc = strtosc(menu, funcptr);
+ newsc = strtosc(funcptr);
if (newsc == NULL) {
rcfile_error(N_("Cannot map name \"%s\" to a function"), funcptr);
return;