comparison lisp/apropos.el @ 22408:500bc7f67524

(apropos-print): The cross ref for a variable should always do just describe-variable.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Jun 1998 03:47:42 +0000
parents a049e7c748d9
children 5a83f0f3b29d
comparison
equal deleted inserted replaced
22407:e7ec3ed4c814 22408:500bc7f67524
587 "Command" 587 "Command"
588 (if (apropos-macrop symbol) 588 (if (apropos-macrop symbol)
589 "Macro" 589 "Macro"
590 "Function")) 590 "Function"))
591 t) 591 t)
592 (if (get symbol 'custom-type) 592 ;; We used to use customize-variable-other-window instead
593 (apropos-print-doc 'customize-variable-other-window 2 593 ;; for a customizable variable, but that is slow.
594 "User Option" t) 594 ;; It is better to show an ordinary help buffer
595 (apropos-print-doc 'describe-variable 2 595 ;; and let the user click on the customization button
596 "Variable" t)) 596 ;; in that buffer, if he wants to.
597 (apropos-print-doc 'describe-variable 2 "Variable" t)
597 (apropos-print-doc 'customize-group-other-window 6 "Group" t) 598 (apropos-print-doc 'customize-group-other-window 6 "Group" t)
598 (apropos-print-doc 'customize-face-other-window 5 "Face" t) 599 (apropos-print-doc 'customize-face-other-window 5 "Face" t)
599 (apropos-print-doc 'widget-browse-other-window 4 "Widget" t) 600 (apropos-print-doc 'widget-browse-other-window 4 "Widget" t)
600 (apropos-print-doc 'apropos-describe-plist 3 601 (apropos-print-doc 'apropos-describe-plist 3
601 "Plist" nil))))) 602 "Plist" nil)))))