Function: speedbar-stealthy-updates
speedbar-stealthy-updates is a byte-compiled function defined in
speedbar.el.gz.
Signature
(speedbar-stealthy-updates)
Documentation
For a given speedbar, run all items in the stealthy function list.
Each item returns t if it completes successfully, or nil if interrupted by the user.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-stealthy-updates ()
"For a given speedbar, run all items in the stealthy function list.
Each item returns t if it completes successfully, or nil if
interrupted by the user."
(if (not speedbar-stealthy-update-recurse)
(let ((l (speedbar-initial-stealthy-functions))
(speedbar-stealthy-update-recurse t))
(speedbar-with-writable
(while (and l (funcall (car l)))
;;(sit-for 0)
(setq l (cdr l))))
;;(dframe-message "Exit with %S" (car l))
)))