diff options
author | michaels <michaels@cvs.openbsd.org> | 1996-10-16 01:19:02 +0000 |
---|---|---|
committer | michaels <michaels@cvs.openbsd.org> | 1996-10-16 01:19:02 +0000 |
commit | bbac58ea85fcdd5f15449819005e17cd93c3e14a (patch) | |
tree | 46cac5bf539a167855f9d647a2047e9d9fe89608 /usr.bin/vi/common/options.h | |
parent | bdd4fa6809d3bd31f8890df0ca821dcfd660042f (diff) |
nvi 1.78:
+ Fix bugs when both the leftright scrolling and number edit options
were on.
+ Fix bug where splitting in the middle of the screen could repaint
incorrectly.
+ Fix first-nul in input bug, where random garbage was inserted.
+ Correct search and mark-as-motion-command bug, it's a line mode
action if the search starts at or before the first non<blank>.
+ Fix bug autoindent bug, where ^D could shift too far in the line.
+ Fix core dump where ! command called from the .exrc file.
+ Add the -S command-line option, which initializes vi to have the
secure edit option preset.
Diffstat (limited to 'usr.bin/vi/common/options.h')
-rw-r--r-- | usr.bin/vi/common/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/common/options.h b/usr.bin/vi/common/options.h index 805df7904c4..3f7ed6c58b5 100644 --- a/usr.bin/vi/common/options.h +++ b/usr.bin/vi/common/options.h @@ -6,7 +6,7 @@ * * See the LICENSE file for redistribution information. * - * @(#)options.h 10.17 (Berkeley) 7/2/96 + * @(#)options.h 10.18 (Berkeley) 10/1/96 */ /* @@ -41,7 +41,7 @@ /* Flags to o_set(). */ #define OS_DEF 0x01 /* Set the default value. */ -#define OS_FREE 0x02 /* Free old string if set. */ +#define OS_NOFREE 0x02 /* Don't free the old string. */ #define OS_STR 0x04 /* Set to the str value. */ #define OS_STRDUP 0x08 /* Copy and set to the str value. */ |