diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-12-22 07:39:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-12-22 07:39:09 +0000 |
commit | 8d7f1de352a629b6f28f3b66b9f3e31bba58b477 (patch) | |
tree | 4e59721e42ef730169c7093bbf8b930463123e5a /lisp | |
parent | f0f68b256fd3673a50f39e0f450b1a927411856f (diff) | |
download | emacs-8d7f1de352a629b6f28f3b66b9f3e31bba58b477.tar.gz |
(apropos-print): Pass t instead of DO-KEYS
when calling apropos-print-doc.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/apropos.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 525be1d2c5c..89ea5e46144 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -570,15 +570,15 @@ found." (if (apropos-macrop symbol) "Macro" "Function")) - do-keys) + t) (if (get symbol 'custom-type) (apropos-print-doc 'customize-variable-other-window 2 - "User Option" do-keys) + "User Option" t) (apropos-print-doc 'describe-variable 2 - "Variable" do-keys)) - (apropos-print-doc 'customize-group-other-window 6 "Group" do-keys) - (apropos-print-doc 'customize-face-other-window 5 "Face" do-keys) - (apropos-print-doc 'widget-browse-other-window 4 "Widget" do-keys) + "Variable" t)) + (apropos-print-doc 'customize-group-other-window 6 "Group" t) + (apropos-print-doc 'customize-face-other-window 5 "Face" t) + (apropos-print-doc 'widget-browse-other-window 4 "Widget" t) (apropos-print-doc 'apropos-describe-plist 3 "Plist" nil))))) (prog1 apropos-accumulator |