summaryrefslogtreecommitdiff
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-03-03 13:12:47 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-03-03 13:12:47 +0000
commitd245ff23c3af7682caca6e19fce166d6b0d89659 (patch)
tree3506edfec4c5abd1ed1c52318db1ee4600aab31e /lisp/frame.el
parent139c65cf7b6b0bce5f4cd6e45f450ff4f02d5421 (diff)
downloademacs-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.el2
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