mirror of
git://git.sv.gnu.org/nano.git
synced 2025-02-22 00:04:32 +03:00
tweaks: remove another superfluous check
Commit bb667beb removed do_gotolinecolumn_void() from the MWHEREIS menu (replacing it with the empty flip_goto() function), so there is no longer any need to check for this one special case.
This commit is contained in:
parent
a95fb64dd6
commit
65bf04060b
@ -169,8 +169,7 @@ int do_statusbar_input(bool *finished)
|
||||
* to TRUE to indicate that we're done after running or trying to
|
||||
* run its associated function. */
|
||||
f = sctofunc(shortcut);
|
||||
if (f && (!ISSET(VIEW_MODE) || f->viewok) &&
|
||||
f->func != do_gotolinecolumn_void)
|
||||
if (f && (!ISSET(VIEW_MODE) || f->viewok))
|
||||
execute(shortcut);
|
||||
*finished = TRUE;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user