# HG changeset patch # User Thien-Thi Nguyen # Date 1188178181 0 # Node ID 8ce807303185da8a11e4dceaed6ae474b6f27373 # Parent fb6442527160fe49881d3521cbe973929f863b36 Move provide form to end; nfc. diff -r fb6442527160 -r 8ce807303185 lisp/emacs-lisp/avl-tree.el --- a/lisp/emacs-lisp/avl-tree.el Mon Aug 27 01:28:07 2007 +0000 +++ b/lisp/emacs-lisp/avl-tree.el Mon Aug 27 01:29:41 2007 +0000 @@ -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 @@ "Clear the avl tree TREE." (elib-node-set-left (elib-avl-dummyroot tree) nil)) +(provide 'avl-tree) + ;;; avltree.el ends here