diff options
| -rw-r--r-- | lisp/mail/mailabbrev.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index c4f1a71f426..84debb0bd95 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el | |||
| @@ -505,7 +505,8 @@ characters which may be a part of the name of a mail alias.") | |||
| 505 | (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup)) | 505 | (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup)) |
| 506 | (list (completing-read "Expand alias: " mail-abbrevs nil t)))) | 506 | (list (completing-read "Expand alias: " mail-abbrevs nil t)))) |
| 507 | (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup)) | 507 | (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup)) |
| 508 | (insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) ""))) | 508 | (insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) "")) |
| 509 | (mail-abbrev-expand-hook)) | ||
| 509 | 510 | ||
| 510 | (defun mail-abbrev-next-line (&optional arg) | 511 | (defun mail-abbrev-next-line (&optional arg) |
| 511 | "Expand any mail abbrev, then move cursor vertically down ARG lines. | 512 | "Expand any mail abbrev, then move cursor vertically down ARG lines. |