diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-14 17:34:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-14 17:34:25 +0000 |
commit | 24c993d46ca2f888f6be6baf256bab1d17bdffa0 (patch) | |
tree | e26f0f93dd5cd7dc09fec09407622a1ba0708348 /usr.bin/window/char.h | |
parent | bc8cbbd687d0349dcd8509123625f8e894087662 (diff) |
o link with -ocurses for now since window does not work properly with ncurses
o use mkdtemp(), not mktemp + mkdir in TERMINFO support
o correct program paths for TERMINFO support
o use the curses unctrl() function instead of a private one
Diffstat (limited to 'usr.bin/window/char.h')
-rw-r--r-- | usr.bin/window/char.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/window/char.h b/usr.bin/window/char.h index 7a0af7d354b..9856454f31b 100644 --- a/usr.bin/window/char.h +++ b/usr.bin/window/char.h @@ -1,4 +1,4 @@ -/* $OpenBSD: char.h,v 1.3 1997/02/25 00:03:53 downsj Exp $ */ +/* $OpenBSD: char.h,v 1.4 1999/11/14 17:34:24 millert Exp $ */ /* $NetBSD: char.h,v 1.3 1995/09/28 10:34:01 tls Exp $ */ /* @@ -42,8 +42,6 @@ /* * Macros and things to deal with control characters. * - * Unctrl() is just like the standard function, except we don't want - * to include curses. * Isctrl() returns true for all characters less than space and * greater than or equal to delete. * Isprt() is tab and all characters not isctrl(). It's used @@ -51,11 +49,10 @@ * Isunctrl() includes all characters that should be expanded * using unctrl() by wwwrite() if ww_unctrl is set. */ +#include <curses.h> -extern char *_unctrl[]; extern char _cmap[]; #define ctrl(c) (c & 0x1f) -#define unctrl(c) (_unctrl[(unsigned char) (c)]) #define _C 0x01 #define _P 0x02 #define _U 0x04 |