]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change.
authorRichard M. Stallman <rms@gnu.org>
Tue, 9 Jun 1998 03:47:04 +0000 (03:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 9 Jun 1998 03:47:04 +0000 (03:47 +0000)
lisp/help.el

index 8d9f94f425406547af7cc0907afb078de19561b5..e1a65c79e850385832bdda3792095e8db95506e0 100644 (file)
@@ -738,8 +738,10 @@ Returns the documentation as a string, also."
           (help-setup-xref (list #'describe-variable variable) (interactive-p))
 
          ;; Make a link to customize if this variable can be customized.
-         (if (or (get variable 'custom-type)
-                 (user-variable-p variable))
+         ;; Note, it is not reliable to test for a custom-type property
+         ;; because those are only present after the var's definition
+         ;; has been loaded.
+         (if (user-variable-p variable)
              (let ((customize-label "customize"))
                (terpri)
                (terpri)