- Add more descriptive comments explaining the termios and
curses setup routines, and turn the keypad on before setting
the input mode. (DLR)
+ - Remove stray HAVE_GETOPT_LONG $ifdefs. (DLR)
+- nano.h:
+ - Move the NANO_H include guard up before the first #include.
+ (DLR)
- search.c:
regexp_cleanup()
- Only do anything if REGEXP_COMPILED is set. (David Benbennick)
#endif
case 'p':
SET(PRESERVE);
-#ifdef HAVE_GETOPT_LONG
-#endif
break;
#ifndef DISABLE_WRAPJUSTIFY
case 'r':
* *
**************************************************************************/
+#ifndef NANO_H
+#define NANO_H 1
+
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
-#ifndef NANO_H
-#define NANO_H 1
-
/* Macros for the flags int... */
#define SET(bit) flags |= bit
#define UNSET(bit) flags &= ~bit