Fixing compilation when configured with --enable-tiny plus --enable-browser.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5718 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Benno Schulenberg 2016-03-11 16:30:29 +00:00
parent 8a5ae2130b
commit fb7f7011ec
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2016-03-11 Benno Schulenberg <bensberg@justemail.net>
* src/browser.c (do_browser): Fix compilation when configured with
--enable-tiny plus --enable-browser.
2016-03-10 Benno Schulenberg <bensberg@justemail.net>
* src/rcfile.c (grab_and_store): Do not accept 'header" and 'magic'
commands for the default syntax. This fixes Savannah bug #47323.

View File

@ -128,11 +128,13 @@ char *do_browser(char *path, DIR *dir)
/* Make sure the selected file is within range. */
if (selected >= filelist_len)
selected = filelist_len - 1;
kbinput = ERR;
}
#endif
/* Display (or redisplay) the file list if we don't have a key yet,
* or the list has changed, or the selected file has changed. */
if (kbinput == ERR || kbinput == KEY_WINCH || old_selected != selected)
if (kbinput == ERR || old_selected != selected)
browser_refresh();
old_selected = selected;