]> git.wh0rd.org Git - nano.git/commitdiff
SunOS 5.9 doesn't define KEY_RESIZE either
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Oct 2003 20:21:52 +0000 (20:21 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Oct 2003 20:21:52 +0000 (20:21 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1569 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.h

index 93a5d08350585204169bfa5d91ec6a595db94e8a..6c5f9a8b499c0c531d790740a191b4234c4f3e38 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -112,7 +112,7 @@ CVS code -
          console with keypad(TRUE) generates Ctrl-Z instead of
          KEY_SUSPEND, both unlike ncurses. (DLR)
        - Define KEY_RESIZE as -1 if it isn't defined, as it isn't in
-         the curses library included with SunOS 5.7/5.8.  Also define
+         the curses library included with SunOS 5.7-5.9.  Also define
          KEY_SUSPEND as -1 if it isn't defined, in case it isn't in
          more than just Slang. (DLR)
 - move.c:
index 5b30dc96ff23d402f9443a4417c20c84ceba4fd6..7122fa0aac7b74ec24b91bd6ac09647a68b04cbe 100644 (file)
@@ -98,7 +98,7 @@
 #define KEY_END -1
 #endif
 
-/* Slang and SunOS 5.7 & 5.8 do not seem to support KEY_RESIZE */
+/* Slang and SunOS 5.7-5.9 do not seem to support KEY_RESIZE */
 #ifndef KEY_RESIZE
 #define KEY_RESIZE -1
 #endif