aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost <[email protected]>2002-09-21 20:11:08 +0000
committerMarkus Rost <[email protected]>2002-09-21 20:11:08 +0000
commitf8aba1ce998c2cb33e1dfa2741aedb4a2ae2f1ca (patch)
treed43dea54f2eed1fae12fc893af6b5c573a2a7603
parent4e189812e9890ff3aa7e413d1be896227d246ce1 (diff)
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/mailabbrev.el5
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0aca5ec572..0907bc2bdf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-21 Markus Rost <[email protected]>
+
+ * mail/mailabbrev.el (mail-abbrev-make-syntax-table): Give %!._-
+ word constituent syntax.
+
2002-09-21 Richard M. Stallman <[email protected]>
* cus-dep.el (custom-make-dependencies): Bind to t
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el
index 64ca66ad45..3412a791f7 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 ()