diff options
author | Lute Kamstra <lute@gnu.org> | 2005-05-26 13:08:57 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-05-26 13:08:57 +0000 |
commit | 92e9557c064b050de524c48e3e2d56b4db27e9bc (patch) | |
tree | 6878fddb8f1c2b6392fe9ba2ff56dbc20a677a0f /lisp/replace.el | |
parent | 430663bc89121001dbfafa9e7f6aaa503db901be (diff) | |
download | emacs-92e9557c064b050de524c48e3e2d56b4db27e9bc.tar.gz |
(occur-mode): Use run-mode-hooks.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r-- | lisp/replace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index c9c70b59de5..ba3d5fcfbf4 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -693,7 +693,7 @@ Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it. (make-local-variable 'occur-revert-arguments) (add-hook 'change-major-mode-hook 'font-lock-defontify nil t) (setq next-error-function 'occur-next-error) - (run-hooks 'occur-mode-hook)) + (run-mode-hooks 'occur-mode-hook)) (defun occur-revert-function (ignore1 ignore2) "Handle `revert-buffer' for Occur mode buffers." |