Function: kill-find
kill-find is an interactive and byte-compiled function defined in
find-dired.el.gz.
Signature
(kill-find)
Documentation
Kill the find process running in the current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/find-dired.el.gz
(defun kill-find ()
"Kill the `find' process running in the current buffer."
(interactive)
(let ((find (get-buffer-process (current-buffer))))
(and find (eq (process-status find) 'run)
(eq (process-filter find) #'find-dired-filter)
(condition-case nil
(delete-process find)
(error nil)))))