Mercurial > emacs
changeset 47573:29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
author | Markus Rost <rost@math.uni-bielefeld.de> |
---|---|
date | Sat, 21 Sep 2002 20:10:47 +0000 |
parents | c8b217797196 |
children | 87934bad758d |
files | lisp/mail/mailabbrev.el |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/mailabbrev.el Sat Sep 21 20:00:30 2002 +0000 +++ b/lisp/mail/mailabbrev.el Sat Sep 21 20:10:47 2002 +0000 @@ -420,6 +420,11 @@ (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 ()