Function: hashcash-wait-or-cancel

hashcash-wait-or-cancel is an interactive and byte-compiled function defined in hashcash.el.gz.

Signature

(hashcash-wait-or-cancel)

Documentation

Ask user whether to wait for hashcash processes to finish.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/hashcash.el.gz
(defun hashcash-wait-or-cancel ()
  "Ask user whether to wait for hashcash processes to finish."
  (interactive)
  (when (hashcash-processes-running-p (current-buffer))
    (if (y-or-n-p
	  "Hashcash process(es) still running; wait for them to finish? ")
	(hashcash-wait-async)
      (hashcash-cancel-async))))