summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/avl-tree.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/avl-tree.el b/lisp/emacs-lisp/avl-tree.el
index 75ec86c0d0e..604147f618e 100644
--- a/lisp/emacs-lisp/avl-tree.el
+++ b/lisp/emacs-lisp/avl-tree.el
@@ -101,7 +101,6 @@
(defun elib-stack-create () (list))
(defmacro elib-stack-push (stack object) `(push ,object ,stack))
(defmacro elib-stack-pop (stack) `(pop ,stack))
-(provide 'avl-tree)
;;; ================================================================
;;; Functions and macros handling an AVL tree node.
@@ -567,4 +566,6 @@ If there is no such element in the tree, the value is nil."
"Clear the avl tree TREE."
(elib-node-set-left (elib-avl-dummyroot tree) nil))
+(provide 'avl-tree)
+
;;; avltree.el ends here