(mail-interactive-insert-alias): Call mail-abbrev-expand-hook.

This commit is contained in:
Richard M. Stallman 1995-09-04 20:26:58 +00:00
parent fc299663f4
commit 0eef787b49

View file

@ -505,7 +505,8 @@ characters which may be a part of the name of a mail alias.")
(if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
(list (completing-read "Expand alias: " mail-abbrevs nil t))))
(if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
(insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) "")))
(insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) ""))
(mail-abbrev-expand-hook))
(defun mail-abbrev-next-line (&optional arg)
"Expand any mail abbrev, then move cursor vertically down ARG lines.