aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-27 21:43:37 +0000
committerRichard M. Stallman1994-09-27 21:43:37 +0000
commitcba9a9dcb1dee30b675cc5bb7077c09e8c4bf0f8 (patch)
tree923f92c4b7f4820fb2ab01cd24c3e00b9b857117
parentdfdac213aa3969eff6b737916079348393413a95 (diff)
downloademacs-cba9a9dcb1dee30b675cc5bb7077c09e8c4bf0f8.tar.gz
emacs-cba9a9dcb1dee30b675cc5bb7077c09e8c4bf0f8.zip
(command-apropos): Pass t for no-header to apropos.
-rw-r--r--lisp/help.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 220b35ae497..a0c948d16dc 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -511,7 +511,7 @@ documentation found."
511 (let ((message 511 (let ((message
512 (let ((standard-output (get-buffer-create "*Help*"))) 512 (let ((standard-output (get-buffer-create "*Help*")))
513 (print-help-return-message 'identity)))) 513 (print-help-return-message 'identity))))
514 (if (apropos string t 'commandp) 514 (if (apropos string t 'commandp t)
515 (and message (message message))))) 515 (and message (message message)))))
516 516
517(defun locate-library (library &optional nosuffix) 517(defun locate-library (library &optional nosuffix)