diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-09-13 00:52:55 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-09-13 00:52:55 +0000 |
commit | adba8116c3a918f2f091600b60ea1700c9ea7362 (patch) | |
tree | d687c036e1a97206c146b60f7d210b6802198b30 /lisp/frame.el | |
parent | afdceaec7decebe70be60baf5c6515ec3e7d6b1a (diff) | |
download | emacs-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/frame.el')
-rw-r--r-- | lisp/frame.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 35cbbfbe1a2..e5d92fa1df3 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1605,7 +1605,7 @@ cursor display. On a text-only terminal, this is not implemented." no-blinking-cursor (eq system-type 'ms-dos) (not (memq window-system '(x w32))))) - :initialize 'custom-initialize-safe-default + :initialize 'custom-initialize-delay :group 'cursor :global t (if blink-cursor-idle-timer (cancel-timer blink-cursor-idle-timer)) |