Function: doc-view-kill-proc
doc-view-kill-proc is an interactive and byte-compiled function
defined in doc-view.el.gz.
Signature
(doc-view-kill-proc)
Documentation
Kill the current converter process(es).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/doc-view.el.gz
;;;; Utility Functions
(defun doc-view-kill-proc ()
"Kill the current converter process(es)."
(interactive)
(while (consp doc-view--current-converter-processes)
(ignore-errors ;; Some entries might not be processes, and maybe
; some are dead already?
(kill-process (pop doc-view--current-converter-processes))))
(when doc-view--current-timer
(cancel-timer doc-view--current-timer)
(setq doc-view--current-timer nil))
(setq mode-line-process nil))