Mercurial > emacs
changeset 13000:a86ad056a1cd
(mail-interactive-insert-alias): Call mail-abbrev-expand-hook.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 04 Sep 1995 20:26:58 +0000 |
parents | b889a50f71db |
children | 7946d20948fc |
files | lisp/mail/mailabbrev.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/mailabbrev.el Sun Sep 03 18:53:58 1995 +0000 +++ b/lisp/mail/mailabbrev.el Mon Sep 04 20:26:58 1995 +0000 @@ -505,7 +505,8 @@ (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.