(blink-cursor): Default to nil if not running under
a window-system.
This commit is contained in:
parent
2f51694043
commit
e4f98ad3c6
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue