changeset 60347:3375018deeb3

(blink-cursor-mode): `emacs-quick-startup' may not be bound yet.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 03 Mar 2005 13:12:47 +0000
parents 70a63281c541
children 84d948a78a71
files lisp/ChangeLog lisp/frame.el
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Mar 02 22:35:17 2005 +0000
+++ b/lisp/ChangeLog	Thu Mar 03 13:12:47 2005 +0000
@@ -1,3 +1,8 @@
+2005-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+	* frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
+	bound yet.
+
 2005-03-02  Romain Francoise  <romain@orebokech.com>
 
 	* ibuf-ext.el (ibuffer-filter-disable): Move back to the current
@@ -52,8 +57,7 @@
 	(debugger-setup-buffer): Delete one more frame line in case of
 	debug on entry.
 	(debugger-frame-number): Update to use the new text introduced by
-	the 1999-11-03 change.  Skip one more frame in case of debug on
-	entry.
+	the 1999-11-03 change.  Skip one more frame in case of debug on entry.
 
 2005-02-28  Kim F. Storm  <storm@cua.dk>
 
--- a/lisp/frame.el	Wed Mar 02 22:35:17 2005 +0000
+++ b/lisp/frame.el	Thu Mar 03 13:12:47 2005 +0000
@@ -1270,7 +1270,7 @@
 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