summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-07-11 05:41:57 +0000
committerRichard M. Stallman <rms@gnu.org>2005-07-11 05:41:57 +0000
commit8989771d605dfc49ed520dbf08dc4049bd1d9bdd (patch)
tree3c9a90961b400acc1a26832d502f5fbb23ba65f8 /lisp/custom.el
parent5176af43d1492c5d9c92a5b91db0b4b08a10749e (diff)
downloademacs-8989771d605dfc49ed520dbf08dc4049bd1d9bdd.tar.gz
(custom-declare-variable): Doc fix.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index b0c4877d5c8..8e9818b71e7 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -137,14 +137,9 @@ For the standard setting, use `set-default'."
DEFAULT should be an expression to evaluate to compute the default value,
not the default value itself.
-DEFAULT is stored as SYMBOL's value in the standard theme. See
-`custom-known-themes' for a list of known themes. For backwards
-compatibility, DEFAULT is also stored in SYMBOL's property
+DEFAULT is stored as SYMBOL's standard value, in SYMBOL's property
`standard-value'. At the same time, SYMBOL's property `force-value' is
set to nil, as the value is no longer rogue."
- ;; Remember the standard setting. The value should be in the standard
- ;; theme, not in this property. However, this would require changing
- ;; the C source of defvar and others as well...
(put symbol 'standard-value (list default))
;; Maybe this option was rogue in an earlier version. It no longer is.
(when (get symbol 'force-value)