summaryrefslogtreecommitdiff
path: root/usr.bin/vi/common/screen.h
diff options
context:
space:
mode:
authormichaels <michaels@cvs.openbsd.org>1996-08-16 17:58:49 +0000
committermichaels <michaels@cvs.openbsd.org>1996-08-16 17:58:49 +0000
commit418c0bbade1dcb322b7abdbed4064993de8086c2 (patch)
tree4bad4d39a1f432f68cae3d673074f4b724aba879 /usr.bin/vi/common/screen.h
parent445816164da4c953591f89549fdd9bc8825aa8c8 (diff)
nvi 1.73
Diffstat (limited to 'usr.bin/vi/common/screen.h')
-rw-r--r--usr.bin/vi/common/screen.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/vi/common/screen.h b/usr.bin/vi/common/screen.h
index 141d50703b6..bb7254f62a2 100644
--- a/usr.bin/vi/common/screen.h
+++ b/usr.bin/vi/common/screen.h
@@ -6,7 +6,7 @@
*
* See the LICENSE file for redistribution information.
*
- * @(#)screen.h 10.22 (Berkeley) 6/30/96
+ * @(#)screen.h 10.24 (Berkeley) 7/19/96
*/
/*
@@ -89,6 +89,7 @@ struct _scr {
void *ex_private; /* Ex private area. */
void *vi_private; /* Vi private area. */
+ void *perl_private; /* Perl private area. */
/* PARTIALLY OR COMPLETELY COPIED FROM PREVIOUS SCREEN. */
char *alt_name; /* Ex/vi: alternate file name. */
@@ -194,8 +195,9 @@ struct _scr {
#define SC_RE_SEARCH 0x00400000 /* Search RE has been compiled. */
#define SC_RE_SUBST 0x00800000 /* Substitute RE has been compiled. */
#define SC_SCRIPT 0x01000000 /* Shell script window. */
-#define SC_STATUS 0x02000000 /* Schedule welcome message. */
-#define SC_TINPUT 0x04000000 /* Doing text input. */
-#define SC_TINPUT_INFO 0x08000000 /* Doing text input on info line. */
+#define SC_STATUS 0x02000000 /* Welcome message. */
+#define SC_STATUS_CNT 0x04000000 /* Welcome message plus file count. */
+#define SC_TINPUT 0x08000000 /* Doing text input. */
+#define SC_TINPUT_INFO 0x10000000 /* Doing text input on info line. */
u_int32_t flags;
};