nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit fb7f7011ec77a8d187bc40dcde2d23b74eab7dac
parent 8a5ae2130bd524a71e7048d8e72a0e3b14475976
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Fri, 11 Mar 2016 16:30:29 +0000

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

Diffstat:
MChangeLog | 4++++
Msrc/browser.c | 4+++-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -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. diff --git a/src/browser.c b/src/browser.c @@ -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;