diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-03-03 13:12:47 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-03-03 13:12:47 +0000 |
commit | d245ff23c3af7682caca6e19fce166d6b0d89659 (patch) | |
tree | 3506edfec4c5abd1ed1c52318db1ee4600aab31e /lisp/frame.el | |
parent | 139c65cf7b6b0bce5f4cd6e45f450ff4f02d5421 (diff) | |
download | emacs-d245ff23c3af7682caca6e19fce166d6b0d89659.tar.gz |
(blink-cursor-mode): `emacs-quick-startup' may not be bound yet.
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 6e04537731d..2b33617e062 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1270,7 +1270,7 @@ Note that this command is effective only when Emacs displays through a window system, because then Emacs does its own cursor display. On a text-only terminal, this is not implemented." :init-value (not (or noninteractive - emacs-quick-startup + (if (boundp 'emacs-quick-startup) emacs-quick-startup) (eq system-type 'ms-dos) (not (memq window-system '(x w32))))) :group 'cursor |