unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Francesco Potorti` <pot@gnu.org>
Subject: rmail-resend and mailabbrev
Date: Fri, 22 Mar 2002 12:26:08 +0100	[thread overview]
Message-ID: <E16oNBQ-0000gM-00@pot.cnuce.cnr.it> (raw)

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


             reply	other threads:[~2002-03-22 11:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-03-22 11:26 Francesco Potorti` [this message]
2002-03-23 16:14 ` rmail-resend and mailabbrev Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E16oNBQ-0000gM-00@pot.cnuce.cnr.it \
    --to=pot@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).