Now trimming the superfluous braces.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5032 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Benno Schulenberg 2014-06-28 15:34:10 +00:00
parent b71cf98ec7
commit d48d84a3ba
2 changed files with 49 additions and 50 deletions

View File

@ -8,8 +8,8 @@
in menus with a prompt. The only two exceptions are 'do_cancel' and
'do_gotolinecolumn_void'. The first is handled specially, so do that
too for the second and then get to drop 140 parameters.
* src/global.c (strtosc): Move recognition of the toggles to the end.
* src/global.c (strtosc): Use a single assignment of do_toggle_void.
* src/global.c (strtosc): Move recognition of the toggles to the end,
use a single assignment of do_toggle_void, trim the unneeded braces.
2014-06-27 Benno Schulenberg <bensberg@justemail.net>
* src/global.c (shortcut_init): Add default keybindings for Cut,

View File

@ -1253,9 +1253,9 @@ sc *strtosc(char *input)
s->scfunc = do_help_void;
else
#endif
if (!strcasecmp(input, "cancel")) {
if (!strcasecmp(input, "cancel"))
s->scfunc = do_cancel;
} else if (!strcasecmp(input, "exit"))
else if (!strcasecmp(input, "exit"))
s->scfunc = do_exit;
else if (!strcasecmp(input, "writeout"))
s->scfunc = do_writeout_void;
@ -1323,13 +1323,6 @@ sc *strtosc(char *input)
s->scfunc = do_undo;
else if (!strcasecmp(input, "redo"))
s->scfunc = do_redo;
#endif
#ifndef DISABLE_HISTORIES
else if (!strcasecmp(input, "prevhistory")) {
s->scfunc = get_history_older_void;
} else if (!strcasecmp(input, "nexthistory")) {
s->scfunc = get_history_newer_void;
}
#endif
else if (!strcasecmp(input, "left") ||
!strcasecmp(input, "back"))
@ -1377,97 +1370,103 @@ sc *strtosc(char *input)
s->scfunc = total_refresh;
else if (!strcasecmp(input, "suspend"))
s->scfunc = do_suspend_void;
else if (!strcasecmp(input, "casesens")) {
else if (!strcasecmp(input, "casesens"))
s->scfunc = case_sens_void;
#ifndef NANO_TINY
} else if (!strcasecmp(input, "regexp") ||
!strcasecmp(input, "regex")) {
else if (!strcasecmp(input, "regexp") ||
!strcasecmp(input, "regex"))
s->scfunc = regexp_void;
} else if (!strcasecmp(input, "backwards")) {
else if (!strcasecmp(input, "backwards"))
s->scfunc = backwards_void;
#endif
} else if (!strcasecmp(input, "flipreplace") ||
!strcasecmp(input, "dontreplace")) {
else if (!strcasecmp(input, "flipreplace") ||
!strcasecmp(input, "dontreplace"))
s->scfunc = flip_replace_void;
} else if (!strcasecmp(input, "gototext")) {
else if (!strcasecmp(input, "gototext"))
s->scfunc = gototext_void;
} else if (!strcasecmp(input, "dosformat")) {
#ifndef DISABLE_HISTORIES
else if (!strcasecmp(input, "prevhistory"))
s->scfunc = get_history_older_void;
else if (!strcasecmp(input, "nexthistory"))
s->scfunc = get_history_newer_void;
#endif
else if (!strcasecmp(input, "dosformat"))
s->scfunc = dos_format_void;
} else if (!strcasecmp(input, "macformat")) {
else if (!strcasecmp(input, "macformat"))
s->scfunc = mac_format_void;
} else if (!strcasecmp(input, "append")) {
else if (!strcasecmp(input, "append"))
s->scfunc = append_void;
} else if (!strcasecmp(input, "prepend")) {
else if (!strcasecmp(input, "prepend"))
s->scfunc = prepend_void;
} else if (!strcasecmp(input, "backup")) {
else if (!strcasecmp(input, "backup"))
s->scfunc = backup_file_void;
#ifndef ENABLE_TINY
} else if (!strcasecmp(input, "flipexecute")) {
else if (!strcasecmp(input, "flipexecute"))
s->scfunc = flip_execute_void;
#endif
#ifndef DISABLE_MULTIBUFFER
} else if (!strcasecmp(input, "flipnewbuffer") ||
!strcasecmp(input, "newbuffer")) {
else if (!strcasecmp(input, "flipnewbuffer") ||
!strcasecmp(input, "newbuffer"))
s->scfunc = new_buffer_void;
#endif
#ifndef DISABLE_BROWSER
} else if (!strcasecmp(input, "tofiles") ||
!strcasecmp(input, "browser")) {
else if (!strcasecmp(input, "tofiles") ||
!strcasecmp(input, "browser"))
s->scfunc = to_files_void;
} else if (!strcasecmp(input, "gotodir")) {
else if (!strcasecmp(input, "gotodir"))
s->scfunc = goto_dir_void;
} else if (!strcasecmp(input, "firstfile")) {
else if (!strcasecmp(input, "firstfile"))
s->scfunc = do_first_file;
} else if (!strcasecmp(input, "lastfile")) {
else if (!strcasecmp(input, "lastfile"))
s->scfunc = do_last_file;
#endif
#ifndef NANO_TINY
} else {
else {
s->scfunc = do_toggle_void;
if (!strcasecmp(input, "nohelp")) {
if (!strcasecmp(input, "nohelp"))
s->toggle = NO_HELP;
} else if (!strcasecmp(input, "constupdate")) {
else if (!strcasecmp(input, "constupdate"))
s->toggle = CONST_UPDATE;
} else if (!strcasecmp(input, "morespace")) {
else if (!strcasecmp(input, "morespace"))
s->toggle = MORE_SPACE;
} else if (!strcasecmp(input, "smoothscroll")) {
else if (!strcasecmp(input, "smoothscroll"))
s->toggle = SMOOTH_SCROLL;
} else if (!strcasecmp(input, "softwrap")) {
else if (!strcasecmp(input, "softwrap"))
s->toggle = SOFTWRAP;
} else if (!strcasecmp(input, "whitespacedisplay")) {
else if (!strcasecmp(input, "whitespacedisplay"))
s->toggle = WHITESPACE_DISPLAY;
#ifndef DISABLE_COLOR
} else if (!strcasecmp(input, "nosyntax")) {
else if (!strcasecmp(input, "nosyntax"))
s->toggle = NO_COLOR_SYNTAX;
#endif
} else if (!strcasecmp(input, "smarthome")) {
else if (!strcasecmp(input, "smarthome"))
s->toggle = SMART_HOME;
} else if (!strcasecmp(input, "autoindent")) {
else if (!strcasecmp(input, "autoindent"))
s->toggle = AUTOINDENT;
} else if (!strcasecmp(input, "cuttoend")) {
else if (!strcasecmp(input, "cuttoend"))
s->toggle = CUT_TO_END;
#ifndef DISABLE_WRAPPING
} else if (!strcasecmp(input, "nowrap")) {
else if (!strcasecmp(input, "nowrap"))
s->toggle = NO_WRAP;
#endif
} else if (!strcasecmp(input, "tabstospaces")) {
else if (!strcasecmp(input, "tabstospaces"))
s->toggle = TABS_TO_SPACES;
} else if (!strcasecmp(input, "backupfile")) {
else if (!strcasecmp(input, "backupfile"))
s->toggle = BACKUP_FILE;
#ifndef DISABLE_MULTIBUFFER
} else if (!strcasecmp(input, "multibuffer")) {
else if (!strcasecmp(input, "multibuffer"))
s->toggle = MULTIBUFFER;
#endif
#ifndef DISABLE_MOUSE
} else if (!strcasecmp(input, "mouse")) {
else if (!strcasecmp(input, "mouse"))
s->toggle = USE_MOUSE;
#endif
} else if (!strcasecmp(input, "noconvert")) {
else if (!strcasecmp(input, "noconvert"))
s->toggle = NO_CONVERT;
} else if (!strcasecmp(input, "suspendenable")) {
else if (!strcasecmp(input, "suspendenable"))
s->toggle = SUSPEND;
#endif /* !NANO_TINY */
} else {
else {
free(s);
return NULL;
}