From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4291 Path: main.gmane.org!not-for-mail From: steve@miranova.com (Steven L. Baur) Newsgroups: gmane.emacs.gnus.general Subject: Re: September 0.18: gnus-summary-reply-with-original Date: 06 Dec 1995 08:36:34 -0800 Organization: Miranova Systems, Inc. Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.29) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035145058 29094 80.91.224.250 (20 Oct 2002 20:17:38 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:17:38 +0000 (UTC) Cc: nc0273@office4.corp.netcom.com (Sean Lynch) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by miranova.com (8.6.11/8.6.9) with ESMTP id IAA21577 for ; Fri, 8 Dec 1995 08:34:29 -0800 Original-Received: from miranova.com (steve@miranova.com [204.212.162.100]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Wed, 6 Dec 1995 17:36:18 +0100 Original-Received: (from steve@localhost) by miranova.com (8.6.11/8.6.9) id IAA07173; Wed, 6 Dec 1995 08:36:37 -0800 Original-To: ding@ifi.uio.no X-Url: http://www.miranova.com/%7Esteve/ In-Reply-To: nc0273@office4.corp.netcom.com's message of 05 Dec 1995 10:42:44 -0800 Original-Lines: 51 X-Mailer: September Gnus v0.18/XEmacs 19.13 Xref: main.gmane.org gmane.emacs.gnus.general:4291 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4291 >>>>> "Sean" == Sean Lynch writes: Sean> I'm getting the following error when I attempt to reply when Sean> I already have a *mail* buffer: Sean> Signalling: (wrong-type-argument integer-or-marker-p nil) Sean> gnus-mail-reply((14)) gnus-summary-reply(t (14)) Sean> gnus-summary-reply-with-original(nil) Sean> call-interactively(gnus-summary-reply-with-original) Sean> I'm running XEmacs 19.13. If I knew what I was doing, I'd Sean> fix it myself, but I don't. It looks to me like Sean> gnus-mail-reply is expecting an integer. Should Sean> gnus-mail-reply be changed to take a list, or should Sean> gnus-summary-reply be passing it an integer? The problem is with zmacs regions being enabled, which they appear to be by default in XEmacs. The following patch fixes that. =================================================================== RCS file: RCS/ChangeLog,v retrieving revision 1.13 diff -u -r1.13 ChangeLog --- 1.13 1995/12/06 05:58:39 +++ ChangeLog 1995/12/06 16:29:21 @@ -1,3 +1,8 @@ +Wed Dec 6 08:29:04 1995 Steven L. Baur + + * gnus-msg.el (gnus-mail-reply): Defend against zmacs regions being + enabled. + Tue Dec 5 21:54:39 1995 Steven L. Baur * gnus-setup.el: Use default installation paths, misc. cleanup =================================================================== RCS file: RCS/gnus-msg.el,v retrieving revision 1.10 diff -u -r1.10 gnus-msg.el --- 1.10 1995/12/06 16:28:29 +++ gnus-msg.el 1995/12/06 16:28:52 @@ -1735,7 +1735,7 @@ (mail-yank-original nil) (save-restriction (narrow-to-region (point-min) (point)) - (goto-char (mark)) + (goto-char (mark t)) (let ((news-reply-yank-from (save-excursion (set-buffer gnus-article-buffer) -- steve@miranova.com baur