> 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


_______________________________________________
Emacs-pretest-bug mailing list
Emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to