Function: hashcash-wait-async
hashcash-wait-async is an interactive and byte-compiled function
defined in hashcash.el.gz.
Signature
(hashcash-wait-async &optional BUFFER)
Documentation
Wait for asynchronous hashcash processes in BUFFER to finish.
BUFFER defaults to the current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/hashcash.el.gz
(defun hashcash-wait-async (&optional buffer)
"Wait for asynchronous hashcash processes in BUFFER to finish.
BUFFER defaults to the current buffer."
(interactive)
(unless buffer (setq buffer (current-buffer)))
(let (entry)
(while (setq entry (rassq buffer hashcash-process-alist))
(accept-process-output (car entry) 1))))