]> git.eshelyaron.com Git - emacs.git/commitdiff
(elib-node-create): Delete unused macro.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Mon, 27 Aug 2007 02:05:22 +0000 (02:05 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Mon, 27 Aug 2007 02:05:22 +0000 (02:05 +0000)
lisp/emacs-lisp/avl-tree.el

index 86e8c75d6b2b2a22577c2bc2bc9e9690db2da90a..f5d6abc22268c375ef3959a2b240fadbd7c54d39 100644 (file)
 
 ;;; Code:
 
-(defmacro elib-node-create (left right data)
-  ;; Create a tree node from LEFT, RIGHT and DATA.
-  `(vector ,left ,right ,data))
-
 (defmacro elib-node-left (node)
   ;; Return the left pointer of NODE.
   `(aref ,node 0))