]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-declare-variable): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Mon, 11 Jul 2005 05:41:57 +0000 (05:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 11 Jul 2005 05:41:57 +0000 (05:41 +0000)
lisp/ChangeLog
lisp/custom.el

index b99648474e4fe21c87ccb36ea4591aa5c4661f3c..859f5b3e2e15d914bdab1f489d83757d56622ce3 100644 (file)
@@ -1,5 +1,7 @@
 2005-07-11  Richard M. Stallman  <rms@gnu.org>
 
+       * custom.el (custom-declare-variable): Doc fix.
+
        * dired-aux.el (dired-compare-directories): Remove "." and ".."
        from the alists.
 
index b0c4877d5c8cf3a8ae5f5a5851bfcb5fcb515e6e..8e9818b71e74072f44d4475412463890d15bf617 100644 (file)
@@ -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)