diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-11-09 05:52:02 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-11-09 05:52:02 +0000 |
commit | ca75b35835944fd5c5332b0835da17d102ef4142 (patch) | |
tree | cfbddf51aa6cc0608ff98c761baf2e0fb52f5554 /lisp/apropos.el | |
parent | ddbfcbde43525572fdb6d2c746b90be838f540d2 (diff) | |
download | emacs-ca75b35835944fd5c5332b0835da17d102ef4142.tar.gz |
(apropos-print-matches): Set help-mode in *Help* buffer.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 2681a8b88b9..170a1defb81 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -232,7 +232,8 @@ Returns list of symbols and documentation found." (if (> (length substed) 67) (princ "\n "))) (princ substed)))) - (or (bolp) (terpri))))) + (or (bolp) (terpri))) + (help-mode))) t) ;; Find key bindings for symbols that are cars in ALIST. Optionally, first |