Mercurial > emacs
changeset 82892:8ce807303185
Move provide form to end; nfc.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Mon, 27 Aug 2007 01:29:41 +0000 |
parents | fb6442527160 |
children | 2321b585ebdd |
files | lisp/emacs-lisp/avl-tree.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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