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/common.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/common.h')
-rw-r--r-- | usr.bin/vi/common/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/common/common.h b/usr.bin/vi/common/common.h index 555db960d7a..0e13fc80b84 100644 --- a/usr.bin/vi/common/common.h +++ b/usr.bin/vi/common/common.h @@ -6,7 +6,7 @@ * * See the LICENSE file for redistribution information. * - * @(#)common.h 10.12 (Berkeley) 5/24/96 + * @(#)common.h 10.13 (Berkeley) 9/25/96 */ /* @@ -93,4 +93,4 @@ typedef enum { SEQ_ABBREV, SEQ_COMMAND, SEQ_INPUT } seq_t; #include "log.h" #include "mem.h" -#include "common_extern.h" +#include "com_extern.h" |