emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: patch for mailabbrev.el


From: Richard Stallman
Subject: Re: patch for mailabbrev.el
Date: Mon, 09 Sep 2002 15:15:14 -0400

Markus Rost wrote:

    The patch is a guess after looking into mailabbrev.el.~1.61~.  It
    seems correct that the characters @%!._- have word constituent syntax
    when expanding mail abbrevs.

Does anyone see a problem with that idea?
Here's the full patch.

2002-09-08  Markus Rost  <address@hidden>

        * mail/mailabbrev.el (mail-abbrev-make-syntax-table): Give %!._-
        word constituent syntax.

===Buffer *vc-diff*=========================================
*** mailabbrev.el.~1.69~        Sat Jul 13 18:47:07 2002
--- mailabbrev.el       Sun Sep  8 13:43:17 2002
***************
*** 420,425 ****
--- 420,430 ----
                       (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 ()




reply via email to

[Prev in Thread] Current Thread [Next in Thread]