diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2002-09-21 20:11:08 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2002-09-21 20:11:08 +0000 |
commit | f8aba1ce998c2cb33e1dfa2741aedb4a2ae2f1ca (patch) | |
tree | d43dea54f2eed1fae12fc893af6b5c573a2a7603 /lisp/mail/mailabbrev.el | |
parent | 4e189812e9890ff3aa7e413d1be896227d246ce1 (diff) | |
download | emacs-f8aba1ce998c2cb33e1dfa2741aedb4a2ae2f1ca.tar.gz emacs-f8aba1ce998c2cb33e1dfa2741aedb4a2ae2f1ca.tar.bz2 emacs-f8aba1ce998c2cb33e1dfa2741aedb4a2ae2f1ca.zip |
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Diffstat (limited to 'lisp/mail/mailabbrev.el')
-rw-r--r-- | lisp/mail/mailabbrev.el | 5 |
1 files changed, 5 insertions, 0 deletions
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 () |