From: David Lawrence Ramsey Date: Thu, 23 Sep 2004 21:52:58 +0000 (+0000) Subject: remove redundant include of limits.h from nano.c X-Git-Tag: v1.3.5~180 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f3ca80e11d96e61e638347de85827c00a9f33952;p=nano.git remove redundant include of limits.h from nano.c git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1940 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 97788698..28f37efc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -47,6 +47,8 @@ CVS code - - Turn off extended input processing (the IEXTEN termios flag) as nano 1.2.x does. New function disable_extended_input(); changes to terminal_init(). (DLR) + - Remove redundant include of limits.h from nano.c. nano.c + includes nano.h and nano.h includes limits.h. (DLR) - files.c: do_insertfile() - Readd the NANO_SMALL #ifdef around the start_again: label to diff --git a/src/nano.c b/src/nano.c index 6b20c227..56cb4976 100644 --- a/src/nano.c +++ b/src/nano.c @@ -35,7 +35,6 @@ #include #include #include -#include #include #include "proto.h" #include "nano.h"