diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-09-19 05:11:48 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-09-19 05:11:48 +0000 |
commit | 21311ac9ecce18e75bdd7a965b7aa8369753e7ee (patch) | |
tree | 7728629ccef39a1d3c4f8ff9c63621c899e14efa /lisp/emacs-lisp | |
parent | 02e91426a52df44c233f604686a81f3f4c8aab64 (diff) | |
download | emacs-21311ac9ecce18e75bdd7a965b7aa8369753e7ee.tar.gz emacs-21311ac9ecce18e75bdd7a965b7aa8369753e7ee.tar.bz2 emacs-21311ac9ecce18e75bdd7a965b7aa8369753e7ee.zip |
(ewoc--node-branch): Add docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/ewoc.el | 5 |
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." |