emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 2dfa330: ; Fix build by reordering definitions


From: Philipp Stephani
Subject: [Emacs-diffs] master 2dfa330: ; Fix build by reordering definitions
Date: Sun, 2 Oct 2016 20:21:09 +0000 (UTC)

branch: master
commit 2dfa3301690d6da4e278e9e170b16ad385d4d09e
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>

    ; Fix build by reordering definitions
---
 lisp/frame.el |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lisp/frame.el b/lisp/frame.el
index ab3b722..1c796be 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]