Variable: message-tool-bar-retro

message-tool-bar-retro is a customizable variable defined in message.el.gz.

Value

((message-send-and-exit "mail/send")
 (message-kill-buffer "close")
 (message-dont-send "cancel")
 (mml-attach-file "attach" mml-mode-map)
 (ispell-message "spell")
 (mml-preview "preview" mml-mode-map)
 (message-insert-importance-high "gnus/important")
 (message-insert-importance-low "gnus/unimportant")
 (message-insert-disposition-notification-to "gnus/receipt"))

Documentation

List of items for the message tool bar (retro style).

See gmm-tool-bar-from-list for details on the format of the list.

This variable was added, or its default value changed, in Emacs 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-tool-bar-retro
  '(;; Old Emacs 21 icon for consistency.
    (message-send-and-exit "mail/send")
    (message-kill-buffer "close")
    (message-dont-send "cancel")
    (mml-attach-file "attach" mml-mode-map)
    (ispell-message "spell")
    (mml-preview "preview" mml-mode-map)
    (message-insert-importance-high "gnus/important")
    (message-insert-importance-low "gnus/unimportant")
    (message-insert-disposition-notification-to "gnus/receipt"))
  "List of items for the message tool bar (retro style).

See `gmm-tool-bar-from-list' for details on the format of the list."
  :type '(repeat gmm-tool-bar-item)
  :version "23.1" ;; No Gnus
  :initialize #'custom-initialize-default
  :set #'message-tool-bar-update
  :group 'message)