changeset 47549:448895ab039b

(ewoc--node-branch): Add docstring.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 19 Sep 2002 05:11:48 +0000
parents 698b4a4bb562
children df31632ef1db
files lisp/emacs-lisp/ewoc.el
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
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."