summaryrefslogtreecommitdiff
path: root/lisp/rfn-eshadow.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2009-09-13 00:52:55 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2009-09-13 00:52:55 +0000
commitadba8116c3a918f2f091600b60ea1700c9ea7362 (patch)
treed687c036e1a97206c146b60f7d210b6802198b30 /lisp/rfn-eshadow.el
parentafdceaec7decebe70be60baf5c6515ec3e7d6b1a (diff)
downloademacs-adba8116c3a918f2f091600b60ea1700c9ea7362.tar.gz
* mail/sendmail.el (send-mail-function):
* tooltip.el (tooltip-mode): * simple.el (transient-mark-mode): * rfn-eshadow.el (file-name-shadow-mode): * frame.el (blink-cursor-mode): * font-core.el (global-font-lock-mode): * files.el (temporary-file-directory) (small-temporary-file-directory, auto-save-file-name-transforms): * epa-hook.el (auto-encryption-mode): * composite.el (global-auto-composition-mode): Use custom-initialize-delay. * startup.el (command-line): Don't explicitly call custom-reevaluate-setting for all the above vars. * custom.el (custom-initialize-safe-set) (custom-initialize-safe-default): Delete.
Diffstat (limited to 'lisp/rfn-eshadow.el')
-rw-r--r--lisp/rfn-eshadow.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/rfn-eshadow.el b/lisp/rfn-eshadow.el
index eb54636e105..5788ab7447b 100644
--- a/lisp/rfn-eshadow.el
+++ b/lisp/rfn-eshadow.el
@@ -216,6 +216,11 @@ that portion dim, invisible, or otherwise less visually noticeable.
With prefix argument ARG, turn on if positive, otherwise off.
Returns non-nil if the new state is enabled."
:global t
+ ;; We'd like to use custom-initialize-set here so the setup is done
+ ;; before dumping, but at the point where the defcustom is evaluated,
+ ;; the corresponding function isn't defined yet, so
+ ;; custom-initialize-set signals an error.
+ :initialize 'custom-initialize-delay
:init-value t
:group 'minibuffer
:version "22.1"