From 6a9ff8615d1fc354e00347b7631a05072caf934d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 9 Jun 1998 03:47:04 +0000 Subject: Comment change. --- lisp/help.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lisp') diff --git a/lisp/help.el b/lisp/help.el index 8d9f94f4254..e1a65c79e85 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -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) -- cgit v1.2.1