diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2000-10-22 00:16:28 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2000-10-22 00:16:28 +0000 |
commit | 4c2cf9511dbe39cdd370e8136631689ff7d4c8f0 (patch) | |
tree | ea2e29422a583ebfec6e9b53d37447f33c4801fd /usr.bin/vi/common/options.h | |
parent | a0b79d6bf57475c09eef9a068977e5dfe08b8a3d (diff) |
Fix noprint/print/octal options; from NetBSD.
reviewed by millert@
Diffstat (limited to 'usr.bin/vi/common/options.h')
-rw-r--r-- | usr.bin/vi/common/options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/vi/common/options.h b/usr.bin/vi/common/options.h index 2646dc301b5..ca321655dff 100644 --- a/usr.bin/vi/common/options.h +++ b/usr.bin/vi/common/options.h @@ -89,6 +89,7 @@ struct _optlist { #define OPT_NOSET 0x010 /* Option may not be set. */ #define OPT_NOUNSET 0x020 /* Option may not be unset. */ #define OPT_NOZERO 0x040 /* Option may not be set to 0. */ +#define OPT_EARLYSET 0x080 /* Func called after value is set */ u_int8_t flags; }; |