diff options
| author | Dave Love <fx@gnu.org> | 1999-01-11 21:01:12 +0000 |
|---|---|---|
| committer | Dave Love <fx@gnu.org> | 1999-01-11 21:01:12 +0000 |
| commit | c96d168d7eee4d6515054059dbc278dc6db02019 (patch) | |
| tree | be9347a6270a989e906002319e1cba31542d15c4 | |
| parent | 9b942ebd481c851895ae2b47c2ad186afea6fa82 (diff) | |
| download | emacs-c96d168d7eee4d6515054059dbc278dc6db02019.tar.gz | |
(temp-buffer-setup-hook, temp-buffer-show-hook): Swap
the values round.
| -rw-r--r-- | lisp/help.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el index 821e8e7e078..7ce9239c601 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -158,7 +158,7 @@ Commands: (help-mode) (setq buffer-read-only nil)) -(add-hook 'temp-buffer-setup-hook 'help-mode-setup) +(add-hook 'temp-buffer-show-hook 'help-mode-setup) (defun help-mode-finish () (when (eq major-mode 'help-mode) @@ -169,7 +169,7 @@ Commands: (setq view-return-to-alist (list (cons (selected-window) help-return-method)))) -(add-hook 'temp-buffer-show-hook 'help-mode-finish) +(add-hook 'temp-buffer-setup-hook 'help-mode-finish) (defun help-quit () "Just exit from the Help command's command loop." |
