Function: progress-reporter-done
progress-reporter-done is a byte-compiled function defined in
subr.el.gz.
Signature
(progress-reporter-done REPORTER)
Documentation
Print reporter's message followed by word "done" in echo area.
Call the functions on `progress-reporter-update-functions`.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun progress-reporter-done (reporter)
"Print reporter's message followed by word \"done\" in echo area.
Call the functions on `progress-reporter-update-functions`."
(run-hook-with-args 'progress-reporter-update-functions
reporter
'done))