mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-29 05:39:55 +03:00
Not passing the menu but setting it earlier.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5045 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
3cd3e32ec3
commit
645841fd25
@ -5,6 +5,8 @@
|
||||
stop passing it around.
|
||||
* src/help.c (help_init), src/winio.c (bottombars): There are
|
||||
no tagless functions, so there is no need to check.
|
||||
* src/prompt.c (do_prompt, get_prompt_string): Don't pass the
|
||||
menu, just set it earlier.
|
||||
|
||||
2014-06-30 Mark Majeres <mark@engine12.com>
|
||||
* src/cut.c, src/global.c, src/nano.c: Rename 'cut_till_end' to
|
||||
|
@ -729,7 +729,7 @@ const sc *get_prompt_string(int *actual, bool allow_tabs,
|
||||
#ifndef DISABLE_HISTORIES
|
||||
filestruct **history_list,
|
||||
#endif
|
||||
void (*refresh_func)(void), int menu
|
||||
void (*refresh_func)(void)
|
||||
#ifndef DISABLE_TABCOMP
|
||||
, bool *list
|
||||
#endif
|
||||
@ -779,8 +779,6 @@ const sc *get_prompt_string(int *actual, bool allow_tabs,
|
||||
statusbar_pww = statusbar_xplustabs();
|
||||
}
|
||||
|
||||
currmenu = menu;
|
||||
|
||||
#ifdef DEBUG
|
||||
fprintf(stderr, "get_prompt_string: answer = \"%s\", statusbar_x = %lu\n", answer, (unsigned long) statusbar_x);
|
||||
#endif
|
||||
@ -979,6 +977,7 @@ int do_prompt(bool allow_tabs,
|
||||
|
||||
prompt = charalloc(((COLS - 4) * mb_cur_max()) + 1);
|
||||
|
||||
currmenu = menu;
|
||||
bottombars(menu);
|
||||
|
||||
va_start(ap, msg);
|
||||
@ -994,7 +993,7 @@ int do_prompt(bool allow_tabs,
|
||||
#ifndef DISABLE_HISTORIES
|
||||
history_list,
|
||||
#endif
|
||||
refresh_func, menu
|
||||
refresh_func
|
||||
#ifndef DISABLE_TABCOMP
|
||||
, &list
|
||||
#endif
|
||||
|
@ -530,7 +530,7 @@ const sc *get_prompt_string(int *value, bool allow_tabs,
|
||||
#ifndef DISABLE_HISTORIES
|
||||
filestruct **history_list,
|
||||
#endif
|
||||
void (*refresh_func)(void), int menu
|
||||
void (*refresh_func)(void)
|
||||
#ifndef DISABLE_TABCOMP
|
||||
, bool *list
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user