diff options
| author | Richard M. Stallman | 2002-04-03 15:33:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-03 15:33:17 +0000 |
| commit | da00bb1869a64acd51ba73c206e4aa6d5e8adf4a (patch) | |
| tree | d212321d1f29eac725ef005a1d7fad96f8cb4e20 | |
| parent | 92308d3a2af481d69783a0984d3eac067414bb71 (diff) | |
| download | emacs-da00bb1869a64acd51ba73c206e4aa6d5e8adf4a.tar.gz emacs-da00bb1869a64acd51ba73c206e4aa6d5e8adf4a.zip | |
(mail-abbrev-complete-alias): Call mail-abbrev-make-syntax-table.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/mail/mailabbrev.el | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cccbd3a1770..283d8a8ce85 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2002-04-03 Richard M. Stallman <rms@gnu.org> | 1 | 2002-04-03 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * mail/mailabbrev.el (mail-abbrev-complete-alias): | ||
| 4 | Call mail-abbrev-make-syntax-table. | ||
| 5 | |||
| 3 | * format.el (format-deannotate-region): Doc fix. | 6 | * format.el (format-deannotate-region): Doc fix. |
| 4 | 7 | ||
| 5 | * enriched.el (enriched-face-ans): Delete special treatment | 8 | * enriched.el (enriched-face-ans): Delete special treatment |
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index ed389526475..86201cf0d2a 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el | |||
| @@ -548,6 +548,7 @@ of a mail alias. The value is set up, buffer-local, when first needed.") | |||
| 548 | "Perform completion on alias preceding point." | 548 | "Perform completion on alias preceding point." |
| 549 | ;; Based on lisp.el:lisp-complete-symbol | 549 | ;; Based on lisp.el:lisp-complete-symbol |
| 550 | (interactive) | 550 | (interactive) |
| 551 | (mail-abbrev-make-syntax-table) | ||
| 551 | (let* ((end (point)) | 552 | (let* ((end (point)) |
| 552 | (syntax-table (syntax-table)) | 553 | (syntax-table (syntax-table)) |
| 553 | (beg (unwind-protect | 554 | (beg (unwind-protect |