From: Markus Rost Date: Sat, 21 Sep 2002 20:11:08 +0000 (+0000) Subject: (mail-abbrev-make-syntax-table): Give %!._- word constituent syntax. X-Git-Tag: ttn-vms-21-2-B4~13093 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f8aba1ce998c2cb33e1dfa2741aedb4a2ae2f1ca;p=emacs.git (mail-abbrev-make-syntax-table): Give %!._- word constituent syntax. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0aca5ec5728..0907bc2bdf0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-09-21 Markus Rost + + * mail/mailabbrev.el (mail-abbrev-make-syntax-table): Give %!._- + word constituent syntax. + 2002-09-21 Richard M. Stallman * 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.") (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 ()