Function: gnus-tool-bar-update

gnus-tool-bar-update is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-tool-bar-update &rest IGNORE)

Documentation

Update the tool bar.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-tool-bar-update (&rest _ignore)
  "Update the tool bar."
  (when (and (boundp 'tool-bar-mode)
	     tool-bar-mode)
    (let* ((args nil)
	   (func (cond ((fboundp 'tool-bar-update)
			'tool-bar-update)
		       ((fboundp 'force-window-update)
			'force-window-update)
		       ((fboundp 'redraw-frame)
			(setq args (list (selected-frame)))
			'redraw-frame)
		       (t 'ignore))))
      (apply func args))))