tweaks: remove some unneeded parentheses, and shorten two function calls

master
Benno Schulenberg 2017-12-17 16:16:59 +01:00
parent e1b0f2b275
commit 7ad5afb935
2 changed files with 6 additions and 8 deletions

View File

@ -993,11 +993,9 @@ void shortcut_init(void)
#endif
#ifdef ENABLE_HISTORIES
add_to_funcs(get_history_older_void,
(MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE),
add_to_funcs(get_history_older_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE,
N_("PrevHstory"), WITHORSANS(prevhistory_gist), TOGETHER, VIEW);
add_to_funcs(get_history_newer_void,
(MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE),
add_to_funcs(get_history_newer_void, MWHEREIS|MREPLACE|MREPLACEWITH|MWHEREISFILE,
N_("NextHstory"), WITHORSANS(nexthistory_gist), BLANKAFTER, VIEW);
#endif
@ -1055,9 +1053,9 @@ void shortcut_init(void)
add_to_funcs(do_page_down, MBROWSER,
nextpage_tag, WITHORSANS(nextpage_gist), TOGETHER, VIEW);
add_to_funcs(do_first_file, (MBROWSER|MWHEREISFILE),
add_to_funcs(do_first_file, MBROWSER|MWHEREISFILE,
N_("First File"), WITHORSANS(firstfile_gist), TOGETHER, VIEW);
add_to_funcs(do_last_file, (MBROWSER|MWHEREISFILE),
add_to_funcs(do_last_file, MBROWSER|MWHEREISFILE,
N_("Last File"), WITHORSANS(lastfile_gist), BLANKAFTER, VIEW);
#ifndef NANO_TINY
add_to_funcs(do_prev_word_void, MBROWSER,

View File

@ -96,13 +96,13 @@ void run_macro(void)
size_t i;
if (recording) {
statusline(HUSH, _("Cannot run macro while recording"));
statusbar(_("Cannot run macro while recording"));
snip_last_keystroke();
return;
}
if (macro_length == 0) {
statusline(HUSH, _("Macro is empty"));
statusbar(_("Macro is empty"));
return;
}