nano

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

commit b2ca88cc7458c976dbb08c9884657f0e20f32aba
parent 7a3f49c01975ee5c5507bb08e0ce02a1df97ae7a
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Wed, 22 Jun 2005 02:31:12 +0000

more cosmetic fixes


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

Diffstat:
Msrc/chars.c | 2+-
Msrc/proto.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/chars.c b/src/chars.c @@ -47,7 +47,7 @@ int nisblank(int c) } #endif -#if defined(NANO_WIDE) && !defined(HAVE_ISWBLANK) +#if !defined(HAVE_ISWBLANK) && defined(NANO_WIDE) /* This function is equivalent to iswblank(). */ int niswblank(wchar_t wc) { diff --git a/src/proto.h b/src/proto.h @@ -162,7 +162,7 @@ extern char *homedir; #ifndef HAVE_ISBLANK int nisblank(int c); #endif -#if defined(NANO_WIDE) && !defined(HAVE_ISWBLANK) +#if !defined(HAVE_ISWBLANK) && defined(NANO_WIDE) int niswblank(wchar_t wc); #endif bool is_byte(int c);