mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(customize-save-variable): Clear customized-value property (saved
values are now put in theme-value property). (customize-set-variable): Doc fix.
This commit is contained in:
parent
ee5aeb5fb8
commit
fe4acc60c6
1 changed files with 2 additions and 6 deletions
|
|
@ -938,9 +938,6 @@ VALUE is a Lisp object.
|
|||
If VARIABLE has a `custom-set' property, that is used for setting
|
||||
VARIABLE, otherwise `set-default' is used.
|
||||
|
||||
The `customized-value' property of the VARIABLE will be set to a list
|
||||
with a quoted VALUE as its sole list member.
|
||||
|
||||
If VARIABLE has a `variable-interactive' property, that is used as if
|
||||
it were the arg to `interactive' (which see) to interactively read the value.
|
||||
|
||||
|
|
@ -971,9 +968,6 @@ Return VALUE.
|
|||
If VARIABLE has a `custom-set' property, that is used for setting
|
||||
VARIABLE, otherwise `set-default' is used.
|
||||
|
||||
The `customized-value' property of the VARIABLE will be set to a list
|
||||
with a quoted VALUE as its sole list member.
|
||||
|
||||
If VARIABLE has a `variable-interactive' property, that is used as if
|
||||
it were the arg to `interactive' (which see) to interactively read the value.
|
||||
|
||||
|
|
@ -993,6 +987,8 @@ If given a prefix (or a COMMENT argument), also prompt for a comment."
|
|||
(comment
|
||||
(put variable 'variable-comment comment)
|
||||
(put variable 'saved-variable-comment comment)))
|
||||
(put variable 'customized-value nil)
|
||||
(put variable 'customized-variable-comment nil)
|
||||
(custom-save-all)
|
||||
value)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue