diff lisp/frame.el @ 30013:10ee2ede881c

(blink-cursor): Default to nil if not running under a window-system.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 03 Jul 2000 16:00:33 +0000
parents 356975f21b18
children 7ab1a3106972
line wrap: on
line diff
--- a/lisp/frame.el	Mon Jul 03 13:49:08 2000 +0000
+++ b/lisp/frame.el	Mon Jul 03 16:00:33 2000 +0000
@@ -1072,7 +1072,8 @@
 	  (setq blink-cursor-mode t))
       (internal-show-cursor nil t))))
 
-(defcustom blink-cursor (not (eq system-type 'ms-dos))
+(defcustom blink-cursor (unless (eq system-type 'ms-dos)
+			  window-system)
   "*Non-nil means blinking cursor mode is active."
   :tag "Blinking cursor"
   :type 'boolean