Variable: message-tool-bar

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

Value

message-tool-bar-retro

Documentation

Specifies the message mode tool bar.

It can be either a list or a symbol referring to a list. See gmm-tool-bar-from-list for the format of the list. The default key map is message-mode-map.

Pre-defined symbols include message-tool-bar-gnome and message-tool-bar-retro.

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 (if (eq gmm-tool-bar-style 'gnome)
				'message-tool-bar-gnome
			      'message-tool-bar-retro)
  "Specifies the message mode tool bar.

It can be either a list or a symbol referring to a list.  See
`gmm-tool-bar-from-list' for the format of the list.  The
default key map is `message-mode-map'.

Pre-defined symbols include `message-tool-bar-gnome' and
`message-tool-bar-retro'."
  :type '(repeat gmm-tool-bar-list-item)
  :type '(choice (const :tag "GNOME style" message-tool-bar-gnome)
		 (const :tag "Retro look"  message-tool-bar-retro)
		 (repeat :tag "User defined list" gmm-tool-bar-item)
		 (symbol))
  :version "23.1" ;; No Gnus
  :initialize #'custom-initialize-default
  :set #'message-tool-bar-update
  :group 'message)