Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
be66e132
Commit
be66e132
authored
Nov 21, 1998
by
Richard M. Stallman
Browse files
(describe-variable): Allow any variable with a defcustom,
even if it is not a user variable.
parent
b63e51c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/help.el
lisp/help.el
+2
-2
No files found.
lisp/help.el
View file @
be66e132
...
...
@@ -728,10 +728,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.
;; Note, it is not reliable to test for a custom-type property
;; 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
(
user-variable-p
variable
)
(
if
(
or
(
user-variable-p
variable
)
(
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