aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorEric S. Raymond1992-05-30 20:24:49 +0000
committerEric S. Raymond1992-05-30 20:24:49 +0000
commitd501f51645d966e8fe2febba698779996b33eb21 (patch)
tree6f8fb7b58342ab0125aecfd659e90e5b66c0ef28 /lisp/emulation
parent76d7458ed90577d639dc71a5e100839d9a9ab13c (diff)
downloademacs-d501f51645d966e8fe2febba698779996b33eb21.tar.gz
emacs-d501f51645d966e8fe2febba698779996b33eb21.zip
*** empty log message ***
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/vi.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emulation/vi.el b/lisp/emulation/vi.el
index 55259ed4221..fb76742c295 100644
--- a/lisp/emulation/vi.el
+++ b/lisp/emulation/vi.el
@@ -1,4 +1,5 @@
1; Evi: Major mode for emulating "vi" editor under GNU Emacs. 1;;; vi.el --- major mode for emulating "vi" editor under GNU Emacs.
2
2; Originally written by : seismo!wucs!nz@rsch.wisc.edu (Neal Ziring) 3; Originally written by : seismo!wucs!nz@rsch.wisc.edu (Neal Ziring)
3; Extensively redesigned and rewritten by wu@crys.wisc.edu (Felix S.T. Wu) 4; Extensively redesigned and rewritten by wu@crys.wisc.edu (Felix S.T. Wu)
4; Last revision: 01/07/87 Wed (for GNU Emacs 18.33) 5; Last revision: 01/07/87 Wed (for GNU Emacs 18.33)
@@ -1445,3 +1446,5 @@ With arg, inserts that many newlines."
1445 (setq arg (1- arg))) 1446 (setq arg (1- arg)))
1446 (if flag (forward-char 1))))) arg) 1447 (if flag (forward-char 1))))) arg)
1447 t)) 1448 t))
1449
1450;;; vi.el ends here