emacs-devel
[Top][All Lists]
Advanced

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

rmail-resend and mailabbrev


From: Francesco Potorti`
Subject: rmail-resend and mailabbrev
Date: Fri, 22 Mar 2002 12:26:08 +0100

I get an error when using rmail-resend.  Applying the following patch
hides the error, but I do not know if something else should be done.

The problem is that rmail-resend tries to set the syntax table to
mail-abbrev-syntax-table, but this is nil.

--- rmail.el.~1.356.~   Wed Mar 20 11:18:40 2002
+++ rmail.el    Fri Mar 22 12:24:40 2002
@@ -3348,7 +3348,8 @@ typically for purposes of moderating a l
                    (if (and (not (vectorp mail-abbrevs))
                             (file-exists-p mail-personal-alias-file))
                        (build-mail-abbrevs))
-                   (set-syntax-table mail-abbrev-syntax-table)
+                   (when mail-abbrev-syntax-table
+                     (set-syntax-table mail-abbrev-syntax-table))
                    (goto-char before)
                    (while (and (< (point) end)
                                (progn (forward-word 1)



reply via email to

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