+2006-02-20 Chong Yidong <cyd@stupidchicken.com>
+
+ * custom.el (customize-mark-to-save, customize-mark-as-set): Load
+ the symbol first.
+
2006-02-20 Juanma Barranquero <lekktu@gmail.com>
* buff-menu.el (list-buffers-noselect): Turn also "\n" into a
To actually save the value, call `custom-save-all'.
Return non-nil iff the `saved-value' property actually changed."
+ (custom-load-symbol symbol)
(let* ((get (or (get symbol 'custom-get) 'default-value))
(value (funcall get symbol))
(saved (get symbol 'saved-value))
default value. Otherwise, set it to nil.
Return non-nil iff the `customized-value' property actually changed."
+ (custom-load-symbol symbol)
(let* ((get (or (get symbol 'custom-get) 'default-value))
(value (funcall get symbol))
(customized (get symbol 'customized-value))