cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3546 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
David Lawrence Ramsey 2006-05-22 01:29:30 +00:00
parent 139fa65c66
commit 6b49e9e54e
1 changed files with 3 additions and 3 deletions

View File

@ -316,9 +316,9 @@ int get_kbinput(WINDOW *win, bool *meta_key, bool *func_key)
* we get a recognized value or sequence. */
while ((kbinput = parse_kbinput(win, meta_key, func_key)) == ERR);
/* If we didn't read from the statusbar prompt, blank the statusbar
* if we need to. */
if (win != bottomwin)
/* If we read from the edit window, blank the statusbar if we need
* to. */
if (win == edit)
check_statusblank();
return kbinput;