# HG changeset patch # User Stefan Monnier # Date 1032412308 0 # Node ID 448895ab039b549a1670f8a56d743a4ae2e33519 # Parent 698b4a4bb562b2ac180079ef3ebd2f2bd8cc318b (ewoc--node-branch): Add docstring. diff -r 698b4a4bb562 -r 448895ab039b lisp/emacs-lisp/ewoc.el --- 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."