diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2006-05-27 11:16:18 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2006-05-27 11:16:18 +0000 |
commit | 7f934f3dda9a2b7825673c9eb17c78db00ba391e (patch) | |
tree | 9cd0f4ffd97043a61a7de3649f26ac1fadeb1a4e /lisp/emacs-lisp/ewoc.el | |
parent | 8d20653feeb6d125386855f65a50720f2e5f5dfb (diff) | |
download | emacs-7f934f3dda9a2b7825673c9eb17c78db00ba391e.tar.gz |
(ewoc--node): Don't define constructor
`make-ewoc--node' for this structure.
Diffstat (limited to 'lisp/emacs-lisp/ewoc.el')
-rw-r--r-- | lisp/emacs-lisp/ewoc.el | 1 |
1 files changed, 1 insertions, 0 deletions
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) |