diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-03-05 15:16:08 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-03-05 15:16:08 +0000 |
commit | fe4acc60c600c23dea5d12e4df32a91fd4039333 (patch) | |
tree | 77190efff44c4cb02e865f7690a78b76a5ac987c /lisp/cus-edit.el | |
parent | ee5aeb5fb8155135fa932666e1f78fdbacaebc3b (diff) | |
download | emacs-fe4acc60c600c23dea5d12e4df32a91fd4039333.tar.gz |
(customize-save-variable): Clear customized-value property (saved
values are now put in theme-value property).
(customize-set-variable): Doc fix.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r-- | lisp/cus-edit.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index c49328ac40d..d8fdf966374 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -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) |