Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a4bb8336
Commit
a4bb8336
authored
Apr 08, 1999
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(describe-variable): Check custom-loads property as well as custom-type.
parent
5cf1c7ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/help.el
lisp/help.el
+3
-1
No files found.
lisp/help.el
View file @
a4bb8336
...
...
@@ -766,7 +766,9 @@ Returns the documentation as a string, also."
;; 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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment