aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-03-03 13:12:47 +0000
committerStefan Monnier2005-03-03 13:12:47 +0000
commitd245ff23c3af7682caca6e19fce166d6b0d89659 (patch)
tree3506edfec4c5abd1ed1c52318db1ee4600aab31e
parent139c65cf7b6b0bce5f4cd6e45f450ff4f02d5421 (diff)
downloademacs-d245ff23c3af7682caca6e19fce166d6b0d89659.tar.gz
emacs-d245ff23c3af7682caca6e19fce166d6b0d89659.zip
(blink-cursor-mode): `emacs-quick-startup' may not be bound yet.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/frame.el2
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8964538ee3e..56c3937b564 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
4 bound yet.
5
12005-03-02 Romain Francoise <romain@orebokech.com> 62005-03-02 Romain Francoise <romain@orebokech.com>
2 7
3 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current 8 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
@@ -52,8 +57,7 @@
52 (debugger-setup-buffer): Delete one more frame line in case of 57 (debugger-setup-buffer): Delete one more frame line in case of
53 debug on entry. 58 debug on entry.
54 (debugger-frame-number): Update to use the new text introduced by 59 (debugger-frame-number): Update to use the new text introduced by
55 the 1999-11-03 change. Skip one more frame in case of debug on 60 the 1999-11-03 change. Skip one more frame in case of debug on entry.
56 entry.
57 61
582005-02-28 Kim F. Storm <storm@cua.dk> 622005-02-28 Kim F. Storm <storm@cua.dk>
59 63
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
1270displays through a window system, because then Emacs does its own 1270displays through a window system, because then Emacs does its own
1271cursor display. On a text-only terminal, this is not implemented." 1271cursor display. On a text-only terminal, this is not implemented."
1272 :init-value (not (or noninteractive 1272 :init-value (not (or noninteractive
1273 emacs-quick-startup 1273 (if (boundp 'emacs-quick-startup) emacs-quick-startup)
1274 (eq system-type 'ms-dos) 1274 (eq system-type 'ms-dos)
1275 (not (memq window-system '(x w32))))) 1275 (not (memq window-system '(x w32)))))
1276 :group 'cursor 1276 :group 'cursor