Function: mh-speed-stealth-update
mh-speed-stealth-update is a byte-compiled function defined in
mh-speed.el.gz.
Signature
(mh-speed-stealth-update &optional FORCE)
Documentation
Do stealth update.
With non-nil FORCE, the update is always carried out.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-speed.el.gz
(defun mh-speed-stealth-update (&optional force)
"Do stealth update.
With non-nil FORCE, the update is always carried out."
(cond ((with-current-buffer speedbar-buffer
(get-text-property (point-min) 'mh-level))
;; Execute this hook and *don't* run anything else
(mh-speed-update-current-folder force)
nil)
;; Otherwise on to your regular programming
(t t)))