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