mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-25 06:17:34 +00:00
(mail-interactive-insert-alias): Call mail-abbrev-expand-hook.
This commit is contained in:
parent
fc299663f4
commit
0eef787b49
1 changed files with 2 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue