summaryrefslogtreecommitdiff
path: root/usr.bin/vi/common/exf.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/exf.h
parent445816164da4c953591f89549fdd9bc8825aa8c8 (diff)
nvi 1.73
Diffstat (limited to 'usr.bin/vi/common/exf.h')
-rw-r--r--usr.bin/vi/common/exf.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/usr.bin/vi/common/exf.h b/usr.bin/vi/common/exf.h
index 8ea3edc2c94..cdfaa829448 100644
--- a/usr.bin/vi/common/exf.h
+++ b/usr.bin/vi/common/exf.h
@@ -6,7 +6,7 @@
*
* See the LICENSE file for redistribution information.
*
- * @(#)exf.h 10.6 (Berkeley) 3/6/96
+ * @(#)exf.h 10.7 (Berkeley) 7/9/96
*/
/* Undo direction. */
/*
@@ -52,13 +52,14 @@ struct _exf {
char *rcv_mpath; /* Recover mail file name. */
int rcv_fd; /* Locked mail file descriptor. */
-#define F_FIRSTMODIFY 0x001 /* File not yet modified. */
-#define F_MODIFIED 0x002 /* File is currently dirty. */
-#define F_MULTILOCK 0x004 /* Multiple processes running, lock. */
-#define F_NOLOG 0x008 /* Logging turned off. */
-#define F_RCV_NORM 0x010 /* Don't delete recovery files. */
-#define F_RCV_ON 0x020 /* Recovery is possible. */
-#define F_UNDO 0x040 /* No change since last undo. */
+#define F_DEVSET 0x001 /* mdev/minode fields initialized. */
+#define F_FIRSTMODIFY 0x002 /* File not yet modified. */
+#define F_MODIFIED 0x004 /* File is currently dirty. */
+#define F_MULTILOCK 0x008 /* Multiple processes running, lock. */
+#define F_NOLOG 0x010 /* Logging turned off. */
+#define F_RCV_NORM 0x020 /* Don't delete recovery files. */
+#define F_RCV_ON 0x040 /* Recovery is possible. */
+#define F_UNDO 0x080 /* No change since last undo. */
u_int8_t flags;
};