]> git.eshelyaron.com Git - emacs.git/commitdiff
Move provide form to end; nfc.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Mon, 27 Aug 2007 01:29:41 +0000 (01:29 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Mon, 27 Aug 2007 01:29:41 +0000 (01:29 +0000)
lisp/emacs-lisp/avl-tree.el

index 75ec86c0d0ec706d8ab5456502c96b8f31c71022..604147f618ebfe89eb9841596cd9af7b3cec85aa 100644 (file)
 (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