SunOS 5.9 doesn't define KEY_RESIZE either
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1569 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
5f34d6e3b0
commit
c1f630e914
|
@ -112,7 +112,7 @@ CVS code -
|
||||||
console with keypad(TRUE) generates Ctrl-Z instead of
|
console with keypad(TRUE) generates Ctrl-Z instead of
|
||||||
KEY_SUSPEND, both unlike ncurses. (DLR)
|
KEY_SUSPEND, both unlike ncurses. (DLR)
|
||||||
- Define KEY_RESIZE as -1 if it isn't defined, as it isn't in
|
- 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
|
KEY_SUSPEND as -1 if it isn't defined, in case it isn't in
|
||||||
more than just Slang. (DLR)
|
more than just Slang. (DLR)
|
||||||
- move.c:
|
- move.c:
|
||||||
|
|
|
@ -98,7 +98,7 @@
|
||||||
#define KEY_END -1
|
#define KEY_END -1
|
||||||
#endif
|
#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
|
#ifndef KEY_RESIZE
|
||||||
#define KEY_RESIZE -1
|
#define KEY_RESIZE -1
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue