Function: doc-view--epub-reconvert

doc-view--epub-reconvert is a byte-compiled function defined in doc-view.el.gz.

Signature

(doc-view--epub-reconvert &optional EVENT)

Documentation

Reconvert all epub buffers.

EVENT is unused, but necessary to work with the filenotify API.

Source Code

;; Defined in /usr/src/emacs/lisp/doc-view.el.gz
(defun doc-view--epub-reconvert (&optional _event)
  "Reconvert all epub buffers.

EVENT is unused, but necessary to work with the filenotify API."
  (dolist (x (buffer-list))
    (with-current-buffer x
      (when (eq doc-view-doc-type 'epub)
        (doc-view-reconvert-doc)))))