From: Dave Love Date: Tue, 9 May 2000 18:22:24 +0000 (+0000) Subject: (apropos-print): use `describe-face' instead of X-Git-Tag: emacs-pretest-21.0.90~4021 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5bd51a90c2a6d41d420ea2a1493048e125dc33af;p=emacs.git (apropos-print): use `describe-face' instead of `customize-face-other-window'. --- diff --git a/lisp/apropos.el b/lisp/apropos.el index 61cc0fda3f0..b691c0fa8ef 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -591,14 +591,15 @@ alphabetically by symbol name; but this function also sets "Macro" "Function")) t) - ;; We used to use customize-variable-other-window instead + ;; We used to use `customize-variable-other-window' instead ;; for a customizable variable, but that is slow. ;; It is better to show an ordinary help buffer ;; and let the user click on the customization button ;; in that buffer, if he wants to. + ;; Likewise for `customize-face-other-window'. (apropos-print-doc 'describe-variable 2 "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 'describe-face 5 "Face" t) (apropos-print-doc 'widget-browse-other-window 4 "Widget" t) (apropos-print-doc 'apropos-describe-plist 3 "Plist" nil))