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

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

[elpa] externals/crdt c0093fa 75/80: Pull all require expressions to beg


From: ELPA Syncer
Subject: [elpa] externals/crdt c0093fa 75/80: Pull all require expressions to beginning of the file
Date: Sat, 28 Aug 2021 10:57:45 -0400 (EDT)

branch: externals/crdt
commit c0093fa1d27f25a2e080cc19e6ac65805d5b7d8a
Author: Qiantan Hong <qhong@mit.edu>
Commit: Qiantan Hong <qhong@mit.edu>

    Pull all require expressions to beginning of the file
---
 crdt.el | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/crdt.el b/crdt.el
index fa98f36..2f50714 100644
--- a/crdt.el
+++ b/crdt.el
@@ -30,6 +30,12 @@
 
 ;;; Customs
 
+(require 'cl-lib)
+(require 'subr-x)
+(require 'url)
+(require 'color)
+(require 'files)
+
 (defgroup crdt nil
   "Collaborative editing using Conflict-free Replicated Data Types."
   :prefix "crdt-"
@@ -54,8 +60,6 @@
 (defvar crdt--log-network-traffic nil
   "Debug switch to log network traffic to *Messages*.")
 
-(require 'files)
-
 (defcustom crdt-tuntox-executable (executable-find "tuntox")
   "Path to the tuntox binary."
   :type 'file)
@@ -68,14 +72,8 @@
   "Start tuntox proxy for CRDT servers."
   :type '(choice boolean (const confirm)))
 
-(require 'cl-lib)
-(require 'subr-x)
-(require 'url)
-
 ;;; Pseudo cursor/region utils
 
-(require 'color)
-
 (defvar crdt-cursor-region-colors
   (let ((n 10))
     (cl-loop for i below n



reply via email to

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