# HG changeset patch # User Richard M. Stallman # Date 897364062 0 # Node ID 500bc7f67524fe8ff8d47ee5fe83092aa3533ee6 # Parent e7ec3ed4c8140ebe8af78c4fd5cb71b8563a7342 (apropos-print): The cross ref for a variable should always do just describe-variable. diff -r e7ec3ed4c814 -r 500bc7f67524 lisp/apropos.el --- a/lisp/apropos.el Tue Jun 09 03:47:04 1998 +0000 +++ b/lisp/apropos.el Tue Jun 09 03:47:42 1998 +0000 @@ -589,11 +589,12 @@ "Macro" "Function")) t) - (if (get symbol 'custom-type) - (apropos-print-doc 'customize-variable-other-window 2 - "User Option" t) - (apropos-print-doc 'describe-variable 2 - "Variable" t)) + ;; 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. + (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 'widget-browse-other-window 4 "Widget" t)