nano

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

commit 93c4a5656b909491c85b9c8cd9b35882a1c39afb
parent 9ec76e557390cfa660e88739882f84eee87e073f
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 23 Dec 2004 21:32:27 +0000

#ifdef fixes


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

Diffstat:
Msrc/utils.c | 2+-
Msrc/winio.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/utils.c b/src/utils.c @@ -33,7 +33,7 @@ #include "proto.h" #include "nano.h" -#ifdef HAVE_WCHAR_H +#if defined(HAVE_WCHAR_H) && defined(NANO_WIDE) #include <wchar.h> #endif diff --git a/src/winio.c b/src/winio.c @@ -32,7 +32,7 @@ #include "proto.h" #include "nano.h" -#ifdef HAVE_WCHAR_H +#if defined(HAVE_WCHAR_H) && defined(NANO_WIDE) #include <wchar.h> #endif