Function: ewoc--node-next

ewoc--node-next is a byte-compiled function defined in ewoc.el.gz.

Signature

(ewoc--node-next DLL NODE)

Documentation

Return the node after NODE, or nil if NODE is the last node.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
(defun ewoc--node-next (dll node)
  "Return the node after NODE, or nil if NODE is the last node."
  (let ((R (ewoc--node-right node)))
    (unless (eq dll R) R)))