mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Move provide form to end; nfc.
This commit is contained in:
parent
b74e26bbe2
commit
fb5da2db3e
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue