Function: ewoc-next
ewoc-next is a byte-compiled function defined in ewoc.el.gz.
Signature
(ewoc-next EWOC NODE)
Documentation
Return the node in EWOC that follows NODE.
Return nil if NODE is nil or the last element.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
(defun ewoc-next (ewoc node)
"Return the node in EWOC that follows NODE.
Return nil if NODE is nil or the last element."
(when node
(ewoc--filter-hf-nodes
ewoc (ewoc--node-next (ewoc--dll ewoc) node))))