aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2007-03-05 15:16:08 +0000
committerChong Yidong2007-03-05 15:16:08 +0000
commitfe4acc60c600c23dea5d12e4df32a91fd4039333 (patch)
tree77190efff44c4cb02e865f7690a78b76a5ac987c
parentee5aeb5fb8155135fa932666e1f78fdbacaebc3b (diff)
downloademacs-fe4acc60c600c23dea5d12e4df32a91fd4039333.tar.gz
emacs-fe4acc60c600c23dea5d12e4df32a91fd4039333.zip
(customize-save-variable): Clear customized-value property (saved
values are now put in theme-value property). (customize-set-variable): Doc fix.
-rw-r--r--lisp/cus-edit.el8
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.
938If VARIABLE has a `custom-set' property, that is used for setting 938If VARIABLE has a `custom-set' property, that is used for setting
939VARIABLE, otherwise `set-default' is used. 939VARIABLE, otherwise `set-default' is used.
940 940
941The `customized-value' property of the VARIABLE will be set to a list
942with a quoted VALUE as its sole list member.
943
944If VARIABLE has a `variable-interactive' property, that is used as if 941If VARIABLE has a `variable-interactive' property, that is used as if
945it were the arg to `interactive' (which see) to interactively read the value. 942it were the arg to `interactive' (which see) to interactively read the value.
946 943
@@ -971,9 +968,6 @@ Return VALUE.
971If VARIABLE has a `custom-set' property, that is used for setting 968If VARIABLE has a `custom-set' property, that is used for setting
972VARIABLE, otherwise `set-default' is used. 969VARIABLE, otherwise `set-default' is used.
973 970
974The `customized-value' property of the VARIABLE will be set to a list
975with a quoted VALUE as its sole list member.
976
977If VARIABLE has a `variable-interactive' property, that is used as if 971If VARIABLE has a `variable-interactive' property, that is used as if
978it were the arg to `interactive' (which see) to interactively read the value. 972it were the arg to `interactive' (which see) to interactively read the value.
979 973
@@ -993,6 +987,8 @@ If given a prefix (or a COMMENT argument), also prompt for a comment."
993 (comment 987 (comment
994 (put variable 'variable-comment comment) 988 (put variable 'variable-comment comment)
995 (put variable 'saved-variable-comment comment))) 989 (put variable 'saved-variable-comment comment)))
990 (put variable 'customized-value nil)
991 (put variable 'customized-variable-comment nil)
996 (custom-save-all) 992 (custom-save-all)
997 value) 993 value)
998 994