diff options
author | Lute Kamstra <lute@gnu.org> | 2005-05-26 15:14:23 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-05-26 15:14:23 +0000 |
commit | ec965cd42b8d90fadeb9c21510c2149163996058 (patch) | |
tree | 11443c2944f893f75cc61a4dd5fe7efdfab4c168 /lisp/emulation | |
parent | d47f3fc56f94c8e4d118fe4ad8ee7124c8bc7c9b (diff) | |
download | emacs-ec965cd42b8d90fadeb9c21510c2149163996058.tar.gz |
(vi-mode-setup): Use run-mode-hooks.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/vi.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/vi.el b/lisp/emulation/vi.el index 70a52617431..cd0092e5e87 100644 --- a/lisp/emulation/vi.el +++ b/lisp/emulation/vi.el @@ -403,7 +403,7 @@ form that is ready to be `apply'ed.") (make-local-variable 'vi-mode-old-mode-name) (make-local-variable 'vi-mode-old-major-mode) (make-local-variable 'vi-mode-old-case-fold) - (run-hooks 'vi-mode-hook)) + (run-mode-hooks 'vi-mode-hook)) ;;;###autoload (defun vi-mode () |