Function: hashcash-cancel-async

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

Signature

(hashcash-cancel-async &optional BUFFER)

Documentation

Delete any hashcash processes associated with BUFFER.

BUFFER defaults to the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/hashcash.el.gz
(defun hashcash-cancel-async (&optional buffer)
  "Delete any hashcash processes associated with BUFFER.
BUFFER defaults to the current buffer."
  (interactive)
  (unless buffer (setq buffer (current-buffer)))
  (let (entry)
    (while (setq entry (rassq buffer hashcash-process-alist))
      (delete-process (car entry))
      (setq hashcash-process-alist
	    (delq entry hashcash-process-alist)))))