summaryrefslogtreecommitdiffstats
path: root/usr.bin/window/char.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/window/char.h')
-rw-r--r--usr.bin/window/char.h7
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