branch: externals/trie
commit 77aafc9cf2cf2aabf6fb1a06a4621441bc58e839
Author: Toby S. Cubitt <toby-predict...@dr-qubit.org>
Commit: Toby S. Cubitt <toby-predict...@dr-qubit.org>

    Fix byte-compilation errors and warnings.
---
 trie.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/trie.el b/trie.el
index 6f5b5d5..d2d44f5 100644
--- a/trie.el
+++ b/trie.el
@@ -147,6 +147,8 @@
 
 (eval-when-compile (require 'cl))
 (require 'cl-lib)
+(require 'gv)
+
 (require 'avl-tree)
 (require 'heap)
 (require 'tNFA)
@@ -3094,9 +3096,8 @@ results\)."
 ;; the advice.
 
 
-(eval-when-compile
-  (require 'edebug)
-  (require 'advice))
+(eval-when-compile (require 'edebug))
+(require 'advice)
 
 (defun trie--prin1 (_trie stream)
   (princ "#<trie>" stream))

Reply via email to