Commit 6b49e9e5 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3546 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
...@@ -316,9 +316,9 @@ int get_kbinput(WINDOW *win, bool *meta_key, bool *func_key) ...@@ -316,9 +316,9 @@ int get_kbinput(WINDOW *win, bool *meta_key, bool *func_key)
* we get a recognized value or sequence. */ * we get a recognized value or sequence. */
while ((kbinput = parse_kbinput(win, meta_key, func_key)) == ERR); while ((kbinput = parse_kbinput(win, meta_key, func_key)) == ERR);
/* If we didn't read from the statusbar prompt, blank the statusbar /* If we read from the edit window, blank the statusbar if we need
* if we need to. */ * to. */
if (win != bottomwin) if (win == edit)
check_statusblank(); check_statusblank();
return kbinput; return kbinput;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment