diff --git a/src/prompt.c b/src/prompt.c index 8a3aa8fc..f025c770 100644 --- a/src/prompt.c +++ b/src/prompt.c @@ -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; }