]> git.wh0rd.org Git - nano.git/commitdiff
fix slang compilation problem
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 7 Sep 2003 05:32:24 +0000 (05:32 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 7 Sep 2003 05:32:24 +0000 (05:32 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1544 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.h

index c71949d0c88292f0a94ffaf39e6f3dec8ebe0f36..9023a2ff4bcba39b2bb4bfb5ac2d4be5c471719f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -60,11 +60,12 @@ CVS code -
          interpreted as Ctrl-[character], and the support for Pico's
          Esc Esc [three-digit decimal ASCII code] input method. (DLR)
 - nano.h:
-       - Define KEY_SUSPEND as -1 when slang is used, as slang has no
-         KEY_SUSPEND equivalent.  When nano is compiled with slang
-         support, pressing Ctrl-Z to suspend nano at the Linux console
-         with keypad(TRUE) generates Ctrl-Z instead of KEY_SUSPEND
-         (which is what ncurses generates then). (DLR)
+       - Define KEY_RESIZE and KEY_SUSPEND as -1 when slang is used, as
+         slang has no equivalent of either.  When nano is compiled with
+         slang support, resizing the window doesn't generate
+         KEY_RESIZE, and pressing Ctrl-Z to suspend nano at the Linux
+         console with keypad(TRUE) generates Ctrl-Z instead of
+         KEY_SUSPEND, both unlike ncurses. (DLR)
 - rcfile.c:
   parse_colors()
        - Generate an error if we try to use a bright background color
index 25613a2f20f0f3fbff5b29cbf455068ec8ebf96c..43dc466ba205c52a07d7dba86ad2af8a7556f8c9 100644 (file)
@@ -46,8 +46,9 @@
 
 #ifdef USE_SLANG       /* Slang support enabled */
 #include <slcurses.h>
-#define KEY_IC SL_KEY_IC
 #define KEY_DC SL_KEY_DELETE
+#define KEY_IC SL_KEY_IC
+#define KEY_RESIZE -1
 #define KEY_SUSPEND -1
 #elif defined(HAVE_NCURSES_H)
 #include <ncurses.h>