aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2006-05-27 11:16:18 +0000
committerThien-Thi Nguyen2006-05-27 11:16:18 +0000
commit7f934f3dda9a2b7825673c9eb17c78db00ba391e (patch)
tree9cd0f4ffd97043a61a7de3649f26ac1fadeb1a4e
parent8d20653feeb6d125386855f65a50720f2e5f5dfb (diff)
downloademacs-7f934f3dda9a2b7825673c9eb17c78db00ba391e.tar.gz
emacs-7f934f3dda9a2b7825673c9eb17c78db00ba391e.zip
(ewoc--node): Don't define constructor
`make-ewoc--node' for this structure.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/emacs-lisp/ewoc.el1
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7072091492c..b24a8e2a2f7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -7,6 +7,9 @@
7 7
8 (ewoc--node-branch): Merge into unique caller. 8 (ewoc--node-branch): Merge into unique caller.
9 9
10 (ewoc--node): Don't define constructor
11 make-ewoc--node for this structure.
12
102006-05-27 Mathias Dahl <mathias.dahl@gmail.com> 132006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
11 14
12 * dired.el (dired-mode-map): Change `tumme-tag-remove' to 15 * 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 @@
140 140
141(defstruct (ewoc--node 141(defstruct (ewoc--node
142 (:type vector) ;ewoc--node-nth needs this 142 (:type vector) ;ewoc--node-nth needs this
143 (:constructor nil)
143 (:constructor ewoc--node-create (start-marker data))) 144 (:constructor ewoc--node-create (start-marker data)))
144 left right data start-marker) 145 left right data start-marker)
145 146