nano

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

commit 7975408f66bfb06c4f572fefb0a840912b211545
parent c59979f06722ef3ab64f04b889c389939713b92a
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sat, 23 Oct 2004 02:48:13 +0000

fix wrong word


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2016 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 @@ -108,7 +108,7 @@ void unget_kbinput(int kbinput, bool meta_key, bool func_key) { /* If this character is outside the ASCII range and func_key is * FALSE, treat it as a wide character and put back its equivalent - * multibyte sequence. */ + * UTF-8 sequence. */ if (kbinput > 255 && !func_key) { int i;