]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Sat, 21 Sep 2002 20:11:08 +0000 (20:11 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Sat, 21 Sep 2002 20:11:08 +0000 (20:11 +0000)
lisp/ChangeLog
lisp/mail/mailabbrev.el

index 0aca5ec5728178550a3d35114a41ad5b2b7649fc..0907bc2bdf078d2c6969fb8f7527ff6773b3f3b8 100644 (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
index 64ca66ad4521b9bcc131a58c2d22795011ac93d2..3412a791f77575cc9ea699c4cc323d3d005e62a3 100644 (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 ()