Function: mh-outstanding-commands-p
mh-outstanding-commands-p is an autoloaded and byte-compiled function
defined in mh-folder.el.gz.
Signature
(mh-outstanding-commands-p)
Documentation
Return non-nil if there are outstanding deletes or refiles.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;;###mh-autoload
(defun mh-outstanding-commands-p ()
"Return non-nil if there are outstanding deletes or refiles."
(save-excursion
(when (eq major-mode 'mh-show-mode)
(set-buffer mh-show-folder-buffer))
(or mh-delete-list mh-refile-list mh-blocklist mh-allowlist)))