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-d3aeb78583b8master
parent
013344c4c5
commit
f3ca80e11d
|
@ -47,6 +47,8 @@ CVS code -
|
||||||
- Turn off extended input processing (the IEXTEN termios flag)
|
- Turn off extended input processing (the IEXTEN termios flag)
|
||||||
as nano 1.2.x does. New function disable_extended_input();
|
as nano 1.2.x does. New function disable_extended_input();
|
||||||
changes to terminal_init(). (DLR)
|
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:
|
- files.c:
|
||||||
do_insertfile()
|
do_insertfile()
|
||||||
- Readd the NANO_SMALL #ifdef around the start_again: label to
|
- Readd the NANO_SMALL #ifdef around the start_again: label to
|
||||||
|
|
|
@ -35,7 +35,6 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <limits.h>
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "proto.h"
|
#include "proto.h"
|
||||||
#include "nano.h"
|
#include "nano.h"
|
||||||
|
|
Loading…
Reference in New Issue