From 4f103eaae6b28f48c4b0fa51e3e0fb1a086a6cc5 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 9 Jun 1998 03:47:04 +0000 Subject: [PATCH] Comment change. --- lisp/help.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/help.el b/lisp/help.el index 8d9f94f425..e1a65c79e8 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) -- 2.20.1