nano

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

commit c6618533154c18f8f409de4147e09f3a5fa97959
parent 4f673d802c6eff34d9f2ee82d3c2c3ed1dfb88f5
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri, 17 Jun 2005 22:33:15 +0000

add comment


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2715 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/winio.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/winio.c b/src/winio.c @@ -2893,6 +2893,11 @@ void statusbar(const char *msg, ...) } disable_cursorpos = TRUE; + + /* If we're doing quick statusbar blanking, and constant cursor + * position display is off, blank the statusbar after only one + * keystroke. Otherwise, blank it after twenty-five keystrokes, + * as Pico does. */ statusblank = #ifndef NANO_SMALL ISSET(QUICK_BLANK) && !ISSET(CONST_UPDATE) ? 1 :