2000-07-03 Gerd Moellmann <gerd@gnu.org>
+ * frame.el (blink-cursor-mode): Don't hide cursor initially.
+
+ * startup.el (command-line): Initialize blink-cursor based
+ on window-system.
+
* frame.el (blink-cursor): Default to nil if not running under
a window-system.
(> (cdr (assq 'menu-bar-lines (frame-parameters))) 0)))
(menu-bar-mode t))
+ ;; Can't do this init in defcustom because window-system isn't set.
+ (when (and (not noninteractive)
+ (not (eq system-type 'ms-dos))
+ (memq window-system '(x w32)))
+ (setq-default blink-cursor t)
+ (blink-cursor-mode 1))
+
(run-hooks 'before-init-hook)
;; Run the site-start library if it exists. The point of this file is