tweaks: condense a comment and elide an 'if'

master
Benno Schulenberg 2018-03-01 11:16:59 +01:00
parent de4fbadf20
commit a1be8b6a19
1 changed files with 3 additions and 8 deletions

View File

@ -327,22 +327,17 @@ void parse_syntax(char *ptr)
} }
#endif /* ENABLE_COLOR */ #endif /* ENABLE_COLOR */
/* Check whether the given executable function is "universal" (meaning /* Return TRUE when the given function is present in almost all menus. */
* any horizontal movement or deletion) and thus is present in almost
* all menus. */
bool is_universal(void (*func)(void)) bool is_universal(void (*func)(void))
{ {
if (func == do_left || func == do_right || return (func == do_left || func == do_right ||
func == do_home || func == do_end || func == do_home || func == do_end ||
#ifndef NANO_TINY #ifndef NANO_TINY
func == do_prev_word_void || func == do_next_word_void || func == do_prev_word_void || func == do_next_word_void ||
#endif #endif
func == do_delete || func == do_backspace || func == do_delete || func == do_backspace ||
func == do_cut_text_void || func == do_uncut_text || func == do_cut_text_void || func == do_uncut_text ||
func == do_tab || func == do_enter || func == do_verbatim_input) func == do_tab || func == do_enter || func == do_verbatim_input);
return TRUE;
else
return FALSE;
} }
/* Bind or unbind a key combo, to or from a function. */ /* Bind or unbind a key combo, to or from a function. */