From: Lute Kamstra Date: Thu, 26 May 2005 13:17:27 +0000 (+0000) Subject: Use run-mode-hooks in example. X-Git-Tag: emacs-pretest-22.0.90~9544 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6d0be2925aca572a46c716a70eca062e48e3e228;p=emacs.git Use run-mode-hooks in example. (term-mode): Use run-mode-hooks. --- diff --git a/lisp/term.el b/lisp/term.el index 2b89b83fb04..47411b5099a 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -1102,7 +1102,7 @@ Entry to this mode runs the hooks on `term-mode-hook'." (make-local-variable 'term-current-face) (make-local-variable 'term-pending-frame) (setq term-pending-frame nil) - (run-hooks 'term-mode-hook) + (run-mode-hooks 'term-mode-hook) (term-if-xemacs (set-buffer-menubar (append current-menubar (list term-terminal-menu)))) @@ -4179,7 +4179,7 @@ the process. Any more args are arguments to PROGRAM." ;;; (make-local-variable 'shell-directory-stack) ;;; (setq shell-directory-stack nil) ;;; (add-hook 'term-input-filter-functions 'shell-directory-tracker) -;;; (run-hooks 'shell-mode-hook)) +;;; (run-mode-hooks 'shell-mode-hook)) ;;; ;;; ;;; Completion for term-mode users