(blink-cursor): Default to nil if not running under

a window-system.
This commit is contained in:
Gerd Moellmann 2000-07-03 16:01:31 +00:00
parent 2f51694043
commit e4f98ad3c6
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2000-07-03 Gerd Moellmann <gerd@gnu.org>
* frame.el (blink-cursor): Default to nil if not running under
a window-system.
* faces.el (face-spec-set): Ignore invalid attributes like 20.x.
(face-x-resources): Remove duplicate entry for :font.

View file

@ -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