Function: message-tool-bar-update

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

Signature

(message-tool-bar-update &optional SYMBOL VALUE)

Documentation

Update message mode toolbar.

Setter function for custom variables.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
;; Note: The :set function in the `message-tool-bar*' variables will only
;; affect _new_ message buffers.  We might add a function that walks thru all
;; message-mode buffers and force the update.
(defun message-tool-bar-update (&optional symbol value)
  "Update message mode toolbar.
Setter function for custom variables."
  (setq-default message-tool-bar-map nil)
  (when symbol
    ;; When used as ":set" function:
    (set-default symbol value)))