From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Francesco Potorti` Newsgroups: gmane.emacs.devel Subject: rmail-resend and mailabbrev Date: Fri, 22 Mar 2002 12:26:08 +0100 Sender: emacs-devel-admin@gnu.org Message-ID: NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1016796447 6149 127.0.0.1 (22 Mar 2002 11:27:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 22 Mar 2002 11:27:27 +0000 (UTC) Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16oNCh-0001b4-00 for ; Fri, 22 Mar 2002 12:27:27 +0100 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 16oNJL-0005Dl-00 for ; Fri, 22 Mar 2002 12:34:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16oNCW-0007WN-00; Fri, 22 Mar 2002 06:27:16 -0500 Original-Received: from pot.cnuce.cnr.it ([146.48.83.182]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16oNBR-0007Sf-00 for ; Fri, 22 Mar 2002 06:26:09 -0500 Original-Received: from pot by pot.cnuce.cnr.it with local (Exim 3.34 #1 (Debian)) id 16oNBQ-0000gM-00 for ; Fri, 22 Mar 2002 12:26:08 +0100 Original-To: Emacs developers X-fingerprint: 4B2 6187 5C3 D6B1 2E31 7666 9DF 2DC9 BE21 6115 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.5 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:2121 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:2121 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) _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://mail.gnu.org/mailman/listinfo/emacs-devel