Function: tramp-progress-reporter-update

tramp-progress-reporter-update is a byte-compiled function defined in tramp.el.gz.

Signature

(tramp-progress-reporter-update REPORTER &optional VALUE UPDATE-TEXT)

Documentation

Report progress of an operation for Tramp.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-progress-reporter-update (reporter &optional value update-text)
  "Report progress of an operation for Tramp."
  (let* ((parameters (cdr reporter))
	 (message (aref parameters 3)))
    (when (string-search message (or (current-message) ""))
      (progress-reporter-update reporter value update-text))))