nano

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

commit 84cd0abd6f12b3a9ef797513681d6ce241ba6ae2
parent 6a70d2b6e2d9e8c848e58c43c9758c2b20be41b7
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun,  4 Jun 2017 12:58:08 +0200

tweaks: avoid compiler warning about implicit type

Diffstat:
Msrc/winio.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/winio.c b/src/winio.c @@ -45,7 +45,7 @@ static size_t key_buffer_len = 0; /* The length of the keystroke buffer. */ static bool solitary = FALSE; /* Whether an Esc arrived by itself -- not as leader of a sequence. */ -static waiting_mode = TRUE; +static bool waiting_mode = TRUE; /* Whether getting a character will wait for a key to be pressed. */ static int statusblank = 0; /* The number of keystrokes left before we blank the statusbar. */