diff options
Diffstat (limited to 'usr.bin/vim/cmdcmds.c')
-rw-r--r-- | usr.bin/vim/cmdcmds.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/vim/cmdcmds.c b/usr.bin/vim/cmdcmds.c index 6401177cf62..e8c0ffdf221 100644 --- a/usr.bin/vim/cmdcmds.c +++ b/usr.bin/vim/cmdcmds.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmdcmds.c,v 1.4 1996/09/24 17:53:49 downsj Exp $ */ +/* $OpenBSD: cmdcmds.c,v 1.5 1996/10/14 03:55:07 downsj Exp $ */ /* vi:set ts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar @@ -287,6 +287,7 @@ do_move(line1, line2, n) /* * First we copy the old text to its new location -- webb + * Also copy the flag that ":global" command uses. */ if (u_save(n, n + 1) == FAIL) return FAIL; |