1
1

tweaks: elide an unused variable and parameter

It is only ever set and never referenced.
Этот коммит содержится в:
Benno Schulenberg 2018-02-24 19:42:43 +01:00
родитель ffebd31cbb
Коммит b235404ade

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

@ -53,10 +53,9 @@ int do_statusbar_mouse(void)
#endif #endif
/* Read in a keystroke, interpret it if it is a shortcut or toggle, and /* Read in a keystroke, interpret it if it is a shortcut or toggle, and
* return it. Set ran_func to TRUE if we ran a function associated with * return it. Set finished to TRUE if we're done after running
* a shortcut key, and set finished to TRUE if we're done after running
* or trying to run a function associated with a shortcut key. */ * or trying to run a function associated with a shortcut key. */
int do_statusbar_input(bool *ran_func, bool *finished) int do_statusbar_input(bool *finished)
{ {
int input; int input;
/* The character we read in. */ /* The character we read in. */
@ -67,7 +66,6 @@ int do_statusbar_input(bool *ran_func, bool *finished)
const sc *shortcut; const sc *shortcut;
const subnfunc *f; const subnfunc *f;
*ran_func = FALSE;
*finished = FALSE; *finished = FALSE;
/* Read in a character. */ /* Read in a character. */
@ -167,13 +165,11 @@ int do_statusbar_input(bool *ran_func, bool *finished)
if (cutbuffer != NULL) if (cutbuffer != NULL)
do_statusbar_uncut_text(); do_statusbar_uncut_text();
} else { } else {
/* Handle any other shortcut in the current menu, setting /* Handle any other shortcut in the current menu, setting finished
* ran_func to TRUE if we try to run their associated functions, * to TRUE to indicate that we're done after running or trying to
* and setting finished to TRUE to indicatethat we're done after * run its associated function. */
* running or trying to run their associated functions. */
f = sctofunc(shortcut); f = sctofunc(shortcut);
if (shortcut->func != NULL) { if (shortcut->func != NULL) {
*ran_func = TRUE;
if (f && (!ISSET(VIEW_MODE) || f->viewok) && if (f && (!ISSET(VIEW_MODE) || f->viewok) &&
f->func != do_gotolinecolumn_void) f->func != do_gotolinecolumn_void)
execute(shortcut); execute(shortcut);
@ -439,7 +435,7 @@ functionptrtype acquire_an_answer(int *actual, bool allow_tabs,
void (*refresh_func)(void)) void (*refresh_func)(void))
{ {
int kbinput = ERR; int kbinput = ERR;
bool ran_func, finished; bool finished;
functionptrtype func; functionptrtype func;
#ifdef ENABLE_TABCOMP #ifdef ENABLE_TABCOMP
bool tabbed = FALSE; bool tabbed = FALSE;
@ -466,7 +462,7 @@ functionptrtype acquire_an_answer(int *actual, bool allow_tabs,
update_the_statusbar(); update_the_statusbar();
while (TRUE) { while (TRUE) {
kbinput = do_statusbar_input(&ran_func, &finished); kbinput = do_statusbar_input(&finished);
#ifndef NANO_TINY #ifndef NANO_TINY
/* If the window size changed, go reformat the prompt string. */ /* If the window size changed, go reformat the prompt string. */