=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/window/Attic/char.h,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/window/Attic/char.h 1997/02/25 00:03:53 1.3 --- src/usr.bin/window/Attic/char.h 1999/11/14 17:34:24 1.4 *************** *** 1,4 **** ! /* $OpenBSD: char.h,v 1.3 1997/02/25 00:03:53 downsj Exp $ */ /* $NetBSD: char.h,v 1.3 1995/09/28 10:34:01 tls Exp $ */ /* --- 1,4 ---- ! /* $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,49 **** /* * 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 --- 42,47 ---- *************** *** 51,61 **** * Isunctrl() includes all characters that should be expanded * using unctrl() by wwwrite() if ww_unctrl is set. */ - 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 --- 49,58 ---- * Isunctrl() includes all characters that should be expanded * using unctrl() by wwwrite() if ww_unctrl is set. */ + #include extern char _cmap[]; #define ctrl(c) (c & 0x1f) #define _C 0x01 #define _P 0x02 #define _U 0x04