nano

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

commit 9c92634388a67162c6fa4a0c42bfa99e70374cae
parent 979286c65e2d53ca5f49954ce4b2a0913942fe90
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Tue, 15 Nov 2005 18:42:56 +0000

cosmetic fix


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

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

diff --git a/src/chars.c b/src/chars.c @@ -822,7 +822,7 @@ char *mbstrchr(const char *s, char *c) #ifdef ENABLE_UTF8 if (ISSET(USE_UTF8)) { - bool bad_c_mb = FALSE, bad_s_mb = FALSE; + bool bad_s_mb = FALSE, bad_c_mb = FALSE; char *s_mb = charalloc(MB_CUR_MAX); const char *q = s; wchar_t ws, wc;