aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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