nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit d3a8d81afb3cec2ad5b005aafa87586b5ef01bec
parent e16026eacd9b19451ef3037831aee7b40db82192
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 15 Dec 2019 19:40:22 +0100

tweaks: rename a function, to get out of the way for another rename

Diffstat:
Msrc/help.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/help.c b/src/help.c @@ -88,8 +88,8 @@ void wrap_help_text_into_buffer(void) openfile->edittop = openfile->current; } -/* Our main help-viewer function. */ -void do_help(void) +/* Assemble a help text, display it, and allow scrolling through it. */ +void show_help(void) { int kbinput = ERR; functionptrtype func; @@ -140,8 +140,9 @@ void do_help(void) #endif curs_set(0); - /* Compose the help text from all the pieces. */ + /* Compose the help text from all the relevant pieces. */ help_init(); + inhelp = TRUE; location = 0; didfind = 0; @@ -600,14 +601,13 @@ size_t help_line_len(const char *ptr) else return 1; } - #endif /* ENABLE_HELP */ -/* Start the help viewer. */ +/* Start the help viewer, or indicate that there is no help. */ void do_help_void(void) { #ifdef ENABLE_HELP - do_help(); + show_help(); #else if (currmenu == MMAIN) say_there_is_no_help();