diff lisp/emacs-lisp/ewoc.el @ 47549:448895ab039b

(ewoc--node-branch): Add docstring.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 19 Sep 2002 05:11:48 +0000
parents 0f4506820432
children 0d8b17d428b5
line wrap: on
line diff
--- a/lisp/emacs-lisp/ewoc.el	Thu Sep 19 05:06:16 2002 +0000
+++ b/lisp/emacs-lisp/ewoc.el	Thu Sep 19 05:11:48 2002 +0000
@@ -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."