1
1

tweaks: elide a one-line function, after reducing it to a single call

Этот коммит содержится в:
Benno Schulenberg 2020-09-18 15:22:12 +02:00
родитель 07b5d97a3a
Коммит 37f1d43ce3
4 изменённых файлов: 2 добавлений и 17 удалений

Просмотреть файл

@ -516,15 +516,11 @@ char *browse(char *path)
kbinput = KEY_WINCH;
#endif
} else if (func == do_help) {
#ifdef ENABLE_HELP
do_help();
#ifndef NANO_TINY
/* The window dimensions might have changed, so act as if. */
kbinput = KEY_WINCH;
#endif
#else
say_there_is_no_help();
#endif
#ifndef NANO_TINY
} else if (func == do_toggle_void) {
TOGGLE(NO_HELP);

Просмотреть файл

@ -567,8 +567,8 @@ void do_help(void)
#ifdef ENABLE_HELP
show_help();
#else
if (currmenu == MMAIN)
say_there_is_no_help();
if (currmenu == MMAIN || currmenu == MBROWSER)
statusbar(_("Help is not available"));
else
beep();
#endif

Просмотреть файл

@ -215,14 +215,6 @@ bool in_restricted_mode(void)
return FALSE;
}
#ifndef ENABLE_HELP
/* Indicate that help texts are unavailable. */
void say_there_is_no_help(void)
{
statusbar(_("Help is not available"));
}
#endif
/* Make sure the cursor is visible, then exit from curses mode, disable
* bracketed-paste mode, and restore the original terminal settings. */
void restore_terminal(void)

Просмотреть файл

@ -390,9 +390,6 @@ void free_lines(linestruct *src);
void renumber_from(linestruct *line);
void print_view_warning(void);
bool in_restricted_mode(void);
#ifndef ENABLE_HELP
void say_there_is_no_help(void);
#endif
void finish(void);
void close_and_go(void);
void do_exit(void);