mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
; Fix build by reordering definitions
This commit is contained in:
parent
e0ac09906b
commit
2dfa330169
1 changed files with 9 additions and 9 deletions
|
|
@ -2021,6 +2021,15 @@ widths."
|
|||
|
||||
;; Blinking cursor
|
||||
|
||||
(defvar blink-cursor-idle-timer nil
|
||||
"Timer started after `blink-cursor-delay' seconds of Emacs idle time.
|
||||
The function `blink-cursor-start' is called when the timer fires.")
|
||||
|
||||
(defvar blink-cursor-timer nil
|
||||
"Timer started from `blink-cursor-start'.
|
||||
This timer calls `blink-cursor-timer-function' every
|
||||
`blink-cursor-interval' seconds.")
|
||||
|
||||
(defgroup cursor nil
|
||||
"Displaying text cursors."
|
||||
:version "21.1"
|
||||
|
|
@ -2052,15 +2061,6 @@ Use 0 or negative value to blink forever."
|
|||
(defvar blink-cursor-blinks-done 1
|
||||
"Number of blinks done since we started blinking on NS, X, and MS-Windows.")
|
||||
|
||||
(defvar blink-cursor-idle-timer nil
|
||||
"Timer started after `blink-cursor-delay' seconds of Emacs idle time.
|
||||
The function `blink-cursor-start' is called when the timer fires.")
|
||||
|
||||
(defvar blink-cursor-timer nil
|
||||
"Timer started from `blink-cursor-start'.
|
||||
This timer calls `blink-cursor-timer-function' every
|
||||
`blink-cursor-interval' seconds.")
|
||||
|
||||
(defun blink-cursor--start-idle-timer ()
|
||||
"Start the `blink-cursor-idle-timer'."
|
||||
(when blink-cursor-idle-timer (cancel-timer blink-cursor-idle-timer))
|
||||
|
|
|
|||
Loading…
Reference in a new issue