From: Thien-Thi Nguyen Date: Sat, 27 May 2006 11:16:18 +0000 (+0000) Subject: (ewoc--node): Don't define constructor X-Git-Tag: emacs-pretest-22.0.90~2263 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7f934f3dda9a2b7825673c9eb17c78db00ba391e;p=emacs.git (ewoc--node): Don't define constructor `make-ewoc--node' for this structure. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7072091492c..b24a8e2a2f7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 * dired.el (dired-mode-map): Change `tumme-tag-remove' to diff --git a/lisp/emacs-lisp/ewoc.el b/lisp/emacs-lisp/ewoc.el index 1e85ef813fc..2aa56f04683 100644 --- a/lisp/emacs-lisp/ewoc.el +++ b/lisp/emacs-lisp/ewoc.el @@ -140,6 +140,7 @@ (defstruct (ewoc--node (:type vector) ;ewoc--node-nth needs this + (:constructor nil) (:constructor ewoc--node-create (start-marker data))) left right data start-marker)