mirror of
git://git.sv.gnu.org/nano.git
synced 2025-02-22 00:04:32 +03:00
tweaks: avoid an unused-variable warning
That is: nest the conditions consistently. And in the bargain rename the variable.
This commit is contained in:
parent
26fe2118c4
commit
99fa20645c
@ -621,11 +621,11 @@ void shortcut_init(void)
|
||||
const char *nano_prepend_msg = N_("Toggle prepending");
|
||||
const char *nano_backup_msg = N_("Toggle backing up of the original file");
|
||||
const char *nano_execute_msg = N_("Execute external command");
|
||||
#ifndef DISABLE_MULTIBUFFER
|
||||
const char *nano_newbuffer_msg = N_("Toggle the use of a new buffer");
|
||||
#endif
|
||||
#endif
|
||||
const char *nano_discard_buffer_msg = N_("Close buffer without saving it");
|
||||
#ifndef DISABLE_MULTIBUFFER
|
||||
const char *nano_multibuffer_msg = N_("Toggle the use of a new buffer");
|
||||
#endif
|
||||
#ifndef DISABLE_BROWSER
|
||||
const char *nano_exitbrowser_msg = N_("Exit from the file browser");
|
||||
const char *nano_firstfile_msg = N_("Go to the first file in the list");
|
||||
@ -992,7 +992,7 @@ void shortcut_init(void)
|
||||
|
||||
#ifndef DISABLE_MULTIBUFFER
|
||||
add_to_funcs(new_buffer_void, MINSERTFILE|MEXTCMD,
|
||||
N_("New Buffer"), IFSCHELP(nano_multibuffer_msg), TOGETHER, NOVIEW);
|
||||
N_("New Buffer"), IFSCHELP(nano_newbuffer_msg), TOGETHER, NOVIEW);
|
||||
#endif
|
||||
}
|
||||
#endif /* !NANO_TINY */
|
||||
|
Loading…
x
Reference in New Issue
Block a user