Function: mh-letter-confirm-address

mh-letter-confirm-address is an interactive and byte-compiled function defined in mh-letter.el.gz.

Signature

(mh-letter-confirm-address)

Documentation

Flash alias expansion.

Addresses are separated by a comma; when you press the comma, this command flashes the alias expansion in the minibuffer if mh-alias-flash-on-comma is turned on.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-letter.el.gz
(defun mh-letter-confirm-address ()
  "Flash alias expansion.

Addresses are separated by a comma; when you press the comma,
this command flashes the alias expansion in the minibuffer if
`mh-alias-flash-on-comma' is turned on."
  (interactive)
  (cond ((not (mh-in-header-p)) (self-insert-command 1))
        ((eq (cdr (assoc (mh-letter-header-field-at-point)
                         mh-letter-complete-function-alist))
             'mh-alias-letter-expand-alias)
         (mh-alias-reload-maybe)
         (mh-alias-minibuffer-confirm-address))
        (t (self-insert-command 1))))