diff options
| author | Thien-Thi Nguyen | 2007-08-27 01:29:41 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2007-08-27 01:29:41 +0000 |
| commit | fb5da2db3e0b8d52337682ce59f397a5ae88869f (patch) | |
| tree | 21193ef270106c45198a2e9dc4eccb3c05731f82 | |
| parent | b74e26bbe218674e310249a3cd233dcf4a84850a (diff) | |
| download | emacs-fb5da2db3e0b8d52337682ce59f397a5ae88869f.tar.gz emacs-fb5da2db3e0b8d52337682ce59f397a5ae88869f.zip | |
Move provide form to end; nfc.
| -rw-r--r-- | lisp/emacs-lisp/avl-tree.el | 3 |
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 @@ | |||
| 101 | (defun elib-stack-create () (list)) | 101 | (defun elib-stack-create () (list)) |
| 102 | (defmacro elib-stack-push (stack object) `(push ,object ,stack)) | 102 | (defmacro elib-stack-push (stack object) `(push ,object ,stack)) |
| 103 | (defmacro elib-stack-pop (stack) `(pop ,stack)) | 103 | (defmacro elib-stack-pop (stack) `(pop ,stack)) |
| 104 | (provide 'avl-tree) | ||
| 105 | 104 | ||
| 106 | ;;; ================================================================ | 105 | ;;; ================================================================ |
| 107 | ;;; Functions and macros handling an AVL tree node. | 106 | ;;; 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." | |||
| 567 | "Clear the avl tree TREE." | 566 | "Clear the avl tree TREE." |
| 568 | (elib-node-set-left (elib-avl-dummyroot tree) nil)) | 567 | (elib-node-set-left (elib-avl-dummyroot tree) nil)) |
| 569 | 568 | ||
| 569 | (provide 'avl-tree) | ||
| 570 | |||
| 570 | ;;; avltree.el ends here | 571 | ;;; avltree.el ends here |