nano

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

commit 2d0d60b796bc18dc780bdf84a9334e51d40b5916
parent f102208c05af794ad0d97b2a828d5c6403767bb7
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu,  8 Jun 2006 02:05:34 +0000

fix breakage


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

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

diff --git a/src/winio.c b/src/winio.c @@ -525,7 +525,7 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key) /* If the escape sequence is unrecognized and * not ignored, throw it out. */ - if (retval == ERR && *ignore_seq == FALSE) { + if (retval == ERR && !ignore_seq) { if (win == edit) statusbar(_("Unknown Command")); beep();