diff --git a/ChangeLog b/ChangeLog index a3521b1c..fc8d9916 100644 --- a/ChangeLog +++ b/ChangeLog @@ -133,6 +133,9 @@ CVS code - (DLR) - nano.h: - Readd MIN_EDITOR_COLS #define. (DLR) +- prompt.c: + do_statusbar_input() + - Fix misplaced break when handling NANO_VERBATIM_KEY. (DLR) - rcfile.c: do_rcfile() - Remove unneeded assert. (DLR) diff --git a/src/prompt.c b/src/prompt.c index 6fe6aafa..c2db21bc 100644 --- a/src/prompt.c +++ b/src/prompt.c @@ -210,8 +210,8 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t, *finished = TRUE; } } - break; } + break; /* Handle the normal statusbar prompt shortcuts, setting * ran_func to TRUE if we try to run their associated * functions and setting finished to TRUE to indicate