aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/help.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index df28f62d102..5214d6fda94 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -766,7 +766,9 @@ Returns the documentation as a string, also."
766 ;; Note, it is not reliable to test only for a custom-type property 766 ;; Note, it is not reliable to test only for a custom-type property
767 ;; because those are only present after the var's definition 767 ;; because those are only present after the var's definition
768 ;; has been loaded. 768 ;; has been loaded.
769 (if (or (user-variable-p variable) (get variable 'custom-type)) 769 (if (or (user-variable-p variable)
770 (get variable 'custom-loads)
771 (get variable 'custom-type))
770 (let ((customize-label "customize")) 772 (let ((customize-label "customize"))
771 (terpri) 773 (terpri)
772 (terpri) 774 (terpri)