Function: ewoc-enter-before
ewoc-enter-before is a byte-compiled function defined in ewoc.el.gz.
Signature
(ewoc-enter-before EWOC NODE DATA)
Documentation
Enter a new element DATA before NODE in EWOC.
Return the new node.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
(defun ewoc-enter-before (ewoc node data)
"Enter a new element DATA before NODE in EWOC.
Return the new node."
(ewoc--set-buffer-bind-dll ewoc
(ewoc--insert-new-node node data (ewoc--pretty-printer ewoc) dll)))