From: Thien-Thi Nguyen Date: Mon, 27 Aug 2007 01:29:41 +0000 (+0000) Subject: Move provide form to end; nfc. X-Git-Tag: emacs-pretest-23.0.90~11281 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb5da2db3e0b8d52337682ce59f397a5ae88869f;p=emacs.git Move provide form to end; nfc. --- 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