diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/mailabbrev.el | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0aca5ec5728..0907bc2bdf0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-09-21 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * mail/mailabbrev.el (mail-abbrev-make-syntax-table): Give %!._- | ||
| 4 | word constituent syntax. | ||
| 5 | |||
| 1 | 2002-09-21 Richard M. Stallman <rms@gnu.org> | 6 | 2002-09-21 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * cus-dep.el (custom-make-dependencies): Bind to t | 8 | * cus-dep.el (custom-make-dependencies): Bind to t |
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index 64ca66ad452..3412a791f77 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el | |||
| @@ -420,6 +420,11 @@ of a mail alias. The value is set up, buffer-local, when first needed.") | |||
| 420 | (set-char-table-range tab key w)))) | 420 | (set-char-table-range tab key w)))) |
| 421 | tab) | 421 | tab) |
| 422 | (modify-syntax-entry ?@ "w" tab) | 422 | (modify-syntax-entry ?@ "w" tab) |
| 423 | (modify-syntax-entry ?% "w" tab) | ||
| 424 | (modify-syntax-entry ?! "w" tab) | ||
| 425 | (modify-syntax-entry ?. "w" tab) | ||
| 426 | (modify-syntax-entry ?_ "w" tab) | ||
| 427 | (modify-syntax-entry ?- "w" tab) | ||
| 423 | (setq mail-abbrev-syntax-table tab)))) | 428 | (setq mail-abbrev-syntax-table tab)))) |
| 424 | 429 | ||
| 425 | (defun mail-abbrev-in-expansion-header-p () | 430 | (defun mail-abbrev-in-expansion-header-p () |