]> git.eshelyaron.com Git - emacs.git/commitdiff
(ewoc--node): Don't define constructor
authorThien-Thi Nguyen <ttn@gnuvola.org>
Sat, 27 May 2006 11:16:18 +0000 (11:16 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Sat, 27 May 2006 11:16:18 +0000 (11:16 +0000)
`make-ewoc--node' for this structure.

lisp/ChangeLog
lisp/emacs-lisp/ewoc.el

index 7072091492c948a8262a896bfeecc8c63fe062d8..b24a8e2a2f76689613ff71c35bed148cf498040a 100644 (file)
@@ -7,6 +7,9 @@
 
        (ewoc--node-branch): Merge into unique caller.
 
+       (ewoc--node): Don't define constructor
+       make-ewoc--node for this structure.
+
 2006-05-27  Mathias Dahl  <mathias.dahl@gmail.com>
 
        * dired.el (dired-mode-map): Change `tumme-tag-remove' to
index 1e85ef813fc47a9c19e26bd546f9518f4a994070..2aa56f04683494e7623209c8bf131aab70fae78e 100644 (file)
 
 (defstruct (ewoc--node
            (:type vector)              ;ewoc--node-nth needs this
+            (:constructor nil)
            (:constructor ewoc--node-create (start-marker data)))
   left right data start-marker)