aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-09-19 05:11:48 +0000
committerStefan Monnier2002-09-19 05:11:48 +0000
commit21311ac9ecce18e75bdd7a965b7aa8369753e7ee (patch)
tree7728629ccef39a1d3c4f8ff9c63621c899e14efa
parent02e91426a52df44c233f604686a81f3f4c8aab64 (diff)
downloademacs-21311ac9ecce18e75bdd7a965b7aa8369753e7ee.tar.gz
emacs-21311ac9ecce18e75bdd7a965b7aa8369753e7ee.zip
(ewoc--node-branch): Add docstring.
-rw-r--r--lisp/emacs-lisp/ewoc.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/ewoc.el b/lisp/emacs-lisp/ewoc.el
index d870929c21a..954a2afd514 100644
--- a/lisp/emacs-lisp/ewoc.el
+++ b/lisp/emacs-lisp/ewoc.el
@@ -138,7 +138,10 @@
138 (:constructor ewoc--node-create (start-marker data))) 138 (:constructor ewoc--node-create (start-marker data)))
139 left right data start-marker) 139 left right data start-marker)
140 140
141(defalias 'ewoc--node-branch 'aref) 141(defalias 'ewoc--node-branch 'aref
142 "Get the left (CHILD=0) or right (CHILD=1) child of the NODE.
143
144\(fn NODE CHILD)")
142 145
143(defun ewoc--dll-create () 146(defun ewoc--dll-create ()
144 "Create an empty doubly linked list." 147 "Create an empty doubly linked list."