1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

(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

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