mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-15 17:00:26 +00:00
Move provide form to end; nfc.
This commit is contained in:
parent
b74e26bbe2
commit
fb5da2db3e
@ -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…
Reference in New Issue
Block a user