Variable: mh-alias-flash-on-comma

mh-alias-flash-on-comma is a customizable variable defined in mh-e.el.gz.

Value

t

Documentation

Specify whether to flash address or warn on translation.

This option controls the behavior when a [comma] is pressed while entering aliases or addresses. The default setting flashes the address associated with an address in the minibuffer briefly, but does not display a warning if the alias is not found.

This variable was added, or its default value changed, in MH-E version
7.1.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-alias-flash-on-comma t
  "Specify whether to flash address or warn on translation.

This option controls the behavior when a [comma] is pressed while
entering aliases or addresses. The default setting flashes the
address associated with an address in the minibuffer briefly, but
does not display a warning if the alias is not found."
  :type '(choice (const :tag "Flash but Don't Warn If No Alias" t)
                 (const :tag "Flash and Warn If No Alias" 1)
                 (const :tag "Don't Flash Nor Warn If No Alias" nil))
  :group 'mh-alias
  :package-version '(MH-E . "7.1"))