1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.

This commit is contained in:
Markus Rost 2002-09-21 20:11:08 +00:00
parent 4e189812e9
commit f8aba1ce99
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-09-21 Markus Rost <rost@math.ohio-state.edu>
* mail/mailabbrev.el (mail-abbrev-make-syntax-table): Give %!._-
word constituent syntax.
2002-09-21 Richard M. Stallman <rms@gnu.org>
* cus-dep.el (custom-make-dependencies): Bind to t

View file

@ -420,6 +420,11 @@ of a mail alias. The value is set up, buffer-local, when first needed.")
(set-char-table-range tab key w))))
tab)
(modify-syntax-entry ?@ "w" tab)
(modify-syntax-entry ?% "w" tab)
(modify-syntax-entry ?! "w" tab)
(modify-syntax-entry ?. "w" tab)
(modify-syntax-entry ?_ "w" tab)
(modify-syntax-entry ?- "w" tab)
(setq mail-abbrev-syntax-table tab))))
(defun mail-abbrev-in-expansion-header-p ()