Function: ewoc-invalidate
ewoc-invalidate is a byte-compiled function defined in ewoc.el.gz.
Signature
(ewoc-invalidate EWOC &rest NODES)
Documentation
Call EWOC's pretty-printer for each element in NODES.
Delete current text first, thus effecting a "refresh".
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ewoc.el.gz
(defun ewoc-invalidate (ewoc &rest nodes)
"Call EWOC's pretty-printer for each element in NODES.
Delete current text first, thus effecting a \"refresh\"."
(ewoc--set-buffer-bind-dll-let* ewoc
((pp (ewoc--pretty-printer ewoc)))
(dolist (node nodes)
(ewoc--refresh-node pp node dll))))