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