tweaks: reshuffle an item, to avoid a lone 'else'
parent
0b1a766964
commit
c7ad5c8d86
|
@ -222,13 +222,12 @@ keystruct *strtosc(const char *input)
|
||||||
s->toggle = 0;
|
s->toggle = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_HELP
|
|
||||||
if (!strcmp(input, "help"))
|
|
||||||
s->func = do_help_void;
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
if (!strcmp(input, "cancel"))
|
if (!strcmp(input, "cancel"))
|
||||||
s->func = do_cancel;
|
s->func = do_cancel;
|
||||||
|
#ifdef ENABLE_HELP
|
||||||
|
else if (!strcmp(input, "help"))
|
||||||
|
s->func = do_help_void;
|
||||||
|
#endif
|
||||||
else if (!strcmp(input, "exit"))
|
else if (!strcmp(input, "exit"))
|
||||||
s->func = do_exit;
|
s->func = do_exit;
|
||||||
else if (!strcmp(input, "discardbuffer"))
|
else if (!strcmp(input, "discardbuffer"))
|
||||||
|
|
Loading…
Reference in New Issue