diff options
author | michaels <michaels@cvs.openbsd.org> | 1996-08-16 17:58:49 +0000 |
---|---|---|
committer | michaels <michaels@cvs.openbsd.org> | 1996-08-16 17:58:49 +0000 |
commit | 418c0bbade1dcb322b7abdbed4064993de8086c2 (patch) | |
tree | 4bad4d39a1f432f68cae3d673074f4b724aba879 /usr.bin/vi/cl/cl.h | |
parent | 445816164da4c953591f89549fdd9bc8825aa8c8 (diff) |
nvi 1.73
Diffstat (limited to 'usr.bin/vi/cl/cl.h')
-rw-r--r-- | usr.bin/vi/cl/cl.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/usr.bin/vi/cl/cl.h b/usr.bin/vi/cl/cl.h index 20f6541a34f..e711e95161f 100644 --- a/usr.bin/vi/cl/cl.h +++ b/usr.bin/vi/cl/cl.h @@ -6,7 +6,7 @@ * * See the LICENSE file for redistribution information. * - * @(#)cl.h 10.16 (Berkeley) 6/18/96 + * @(#)cl.h 10.17 (Berkeley) 7/12/96 */ typedef struct _cl_private { @@ -41,12 +41,13 @@ typedef struct _cl_private { TE_SENT=0, TI_SENT } ti_te; #define CL_RENAME 0x001 /* X11 xterm icon/window renamed. */ -#define CL_SCR_EX_INIT 0x002 /* Ex screen initialized. */ -#define CL_SCR_VI_INIT 0x004 /* Vi screen initialized. */ -#define CL_SIGHUP 0x008 /* SIGHUP arrived. */ -#define CL_SIGINT 0x010 /* SIGINT arrived. */ -#define CL_SIGTERM 0x020 /* SIGTERM arrived. */ -#define CL_SIGWINCH 0x040 /* SIGWINCH arrived. */ +#define CL_RENAME_OK 0x002 /* User wants the windows renamed. */ +#define CL_SCR_EX_INIT 0x004 /* Ex screen initialized. */ +#define CL_SCR_VI_INIT 0x008 /* Vi screen initialized. */ +#define CL_SIGHUP 0x010 /* SIGHUP arrived. */ +#define CL_SIGINT 0x020 /* SIGINT arrived. */ +#define CL_SIGTERM 0x040 /* SIGTERM arrived. */ +#define CL_SIGWINCH 0x080 /* SIGWINCH arrived. */ u_int32_t flags; } CL_PRIVATE; |