Function: ewoc-enter-after

ewoc-enter-after is a byte-compiled function defined in ewoc.el.gz.

Signature

(ewoc-enter-after EWOC NODE DATA)

Documentation

Enter a new element DATA after NODE in EWOC.

Return the new node.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
(defun ewoc-enter-after (ewoc node data)
  "Enter a new element DATA after NODE in EWOC.
Return the new node."
  (ewoc--set-buffer-bind-dll ewoc
    (ewoc-enter-before ewoc (ewoc--node-next dll node) data)))