mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
This commit is contained in:
parent
4e189812e9
commit
f8aba1ce99
2 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue