diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-07-03 16:01:31 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-07-03 16:01:31 +0000 |
commit | e4f98ad3c65b83a8d49ec2f9c2657758fcb250a6 (patch) | |
tree | 9cc6b333d10602e0c2f47a15440334ac911934c0 /lisp/frame.el | |
parent | 2f51694043f0ef49a8e1c2ca342abc3700c3cc5a (diff) | |
download | emacs-e4f98ad3c65b83a8d49ec2f9c2657758fcb250a6.tar.gz |
(blink-cursor): Default to nil if not running under
a window-system.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index e3925d2c6ca..03b9bc6e65e 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 |