emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/idle-highlight-mode f360d4e7fe 12/59: [Formatting] Place d


From: ELPA Syncer
Subject: [nongnu] elpa/idle-highlight-mode f360d4e7fe 12/59: [Formatting] Place defcustoms before defvars.
Date: Thu, 7 Jul 2022 12:00:29 -0400 (EDT)

branch: elpa/idle-highlight-mode
commit f360d4e7fe14bb8e693a4dc5698ae6d0819826da
Author: Cornelius Mika <cornelius.mika@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    [Formatting] Place defcustoms before defvars.
---
 idle-highlight-mode.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/idle-highlight-mode.el b/idle-highlight-mode.el
index 550c20b5ee..23c5af09c5 100755
--- a/idle-highlight-mode.el
+++ b/idle-highlight-mode.el
@@ -62,10 +62,6 @@
   "Face used to highlight other occurrences of the word at point."
   :group 'idle-highlight)
 
-(defvar idle-highlight-regexp nil "Buffer-local regexp to be 
idle-highlighted.")
-
-(defvar idle-highlight-global-timer nil "Timer to trigger highlighting.")
-
 (defcustom idle-highlight-exceptions '("end")
   "List of words to be excepted from highlighting."
   :group 'idle-highlight
@@ -76,6 +72,10 @@
   :group 'idle-highlight
   :type 'float)
 
+(defvar idle-highlight-regexp nil "Buffer-local regexp to be 
idle-highlighted.")
+
+(defvar idle-highlight-global-timer nil "Timer to trigger highlighting.")
+
 (defun idle-highlight-word-at-point ()
   "Highlight the word under the point."
   (if idle-highlight-mode



reply via email to

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