emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: emacs-quick-startup unbound on the initialization of blink-cursor-mo


From: Stefan Monnier
Subject: Re: emacs-quick-startup unbound on the initialization of blink-cursor-mode
Date: Thu, 03 Mar 2005 08:13:22 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

> The initial value of blink-cursor-mode is set using the value of
> emacs-quick-startup when noninteractive is nil.

>   :init-value (not (or noninteractive
>                      emacs-quick-startup
>                      (eq system-type 'ms-dos)
>                      (not (memq window-system '(x w32)))))

Does the patch below help?


        Stefan


--- frame.el    26 fév 2005 00:23:59 -0500      1.218
+++ frame.el    03 mar 2005 08:10:45 -0500      
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]