diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-12-20 19:01:00 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-12-20 19:01:00 +0000 |
commit | f0529b5b1aeb64a7df9765781948a5edbfc80b1e (patch) | |
tree | 158ac5ca37e5347b9cc96ffe5514ab852e3aa8b9 /lisp/emacs-lisp/ewoc.el | |
parent | 0ff9b955fe8d8032f5c139dcc86990f0177b646f (diff) | |
download | emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.gz emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.bz2 emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.zip |
Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/ewoc.el')
-rw-r--r-- | lisp/emacs-lisp/ewoc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/ewoc.el b/lisp/emacs-lisp/ewoc.el index 66509589467..d870929c21a 100644 --- a/lisp/emacs-lisp/ewoc.el +++ b/lisp/emacs-lisp/ewoc.el @@ -375,7 +375,7 @@ Returns nil if NODE is nil or the first element." (defun ewoc-nth (ewoc n) "Return the Nth node. -N counts from zero. Nil is returned if there is less than N elements. +N counts from zero. Return nil if there is less than N elements. If N is negative, return the -(N+1)th last element. Thus, (ewoc-nth dll 0) returns the first node, and (ewoc-nth dll -1) returns the last node. |