# HG changeset patch # User Richard M. Stallman # Date 923589975 0 # Node ID a40067a8696be2eabba358e2e5d0a4af2a60e511 # Parent 5f4d21e85cf6746100ced1d2c047a6acdef20654 (describe-variable): Check custom-loads property as well as custom-type. diff -r 5f4d21e85cf6 -r a40067a8696b lisp/help.el --- a/lisp/help.el Thu Apr 08 16:26:38 1999 +0000 +++ b/lisp/help.el Thu Apr 08 16:46:15 1999 +0000 @@ -766,7 +766,9 @@ ;; Note, it is not reliable to test only for a custom-type property ;; because those are only present after the var's definition ;; has been loaded. - (if (or (user-variable-p variable) (get variable 'custom-type)) + (if (or (user-variable-p variable) + (get variable 'custom-loads) + (get variable 'custom-type)) (let ((customize-label "customize")) (terpri) (terpri)