summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/ewoc.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2002-09-19 05:11:48 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2002-09-19 05:11:48 +0000
commit21311ac9ecce18e75bdd7a965b7aa8369753e7ee (patch)
tree7728629ccef39a1d3c4f8ff9c63621c899e14efa /lisp/emacs-lisp/ewoc.el
parent02e91426a52df44c233f604686a81f3f4c8aab64 (diff)
downloademacs-21311ac9ecce18e75bdd7a965b7aa8369753e7ee.tar.gz
(ewoc--node-branch): Add docstring.
Diffstat (limited to 'lisp/emacs-lisp/ewoc.el')
-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 @@
(:constructor ewoc--node-create (start-marker data)))
left right data start-marker)
-(defalias 'ewoc--node-branch 'aref)
+(defalias 'ewoc--node-branch 'aref
+ "Get the left (CHILD=0) or right (CHILD=1) child of the NODE.
+
+\(fn NODE CHILD)")
(defun ewoc--dll-create ()
"Create an empty doubly linked list."