aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-07-03 16:01:31 +0000
committerGerd Moellmann <[email protected]>2000-07-03 16:01:31 +0000
commite4f98ad3c65b83a8d49ec2f9c2657758fcb250a6 (patch)
tree9cc6b333d10602e0c2f47a15440334ac911934c0 /lisp/frame.el
parent2f51694043f0ef49a8e1c2ca342abc3700c3cc5a (diff)
(blink-cursor): Default to nil if not running under
a window-system.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index e3925d2c6c..03b9bc6e65 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1072,7 +1072,8 @@ window blinks."
(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