From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4040 Path: main.gmane.org!not-for-mail From: Michael Cook Newsgroups: gmane.emacs.gnus.general Subject: [sgnus 0.13] bug: mail-position-on-field Date: Sat, 18 Nov 1995 15:09:17 -0500 Message-ID: <199511182009.PAA17497@erawan.cognex.com> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035144846 28362 80.91.224.250 (20 Oct 2002 20:14:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:14:06 +0000 (UTC) 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 MAA16527 for ; Sat, 18 Nov 1995 12:53:38 -0800 Original-Received: from relay5.UU.NET (relay5.UU.NET [192.48.96.15]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Sat, 18 Nov 1995 21:12:46 +0100 Original-Received: from uucp5.UU.NET by relay5.UU.NET with SMTP id QQzqku16306; Sat, 18 Nov 1995 15:12:44 -0500 (EST) Original-Received: from cognex.UUCP by uucp5.UU.NET with UUCP/RMAIL ; Sat, 18 Nov 1995 15:12:45 -0500 Original-Received: from erawan.cognex.com by cognex.com (4.1/SMI-4.2) id AA15870; Sat, 18 Nov 95 15:09:17 EST Original-Received: from erawan.cognex.com by erawan.cognex.com (8.6.12/8.6.12) with ESMTP id PAA17497 for ; Sat, 18 Nov 1995 15:09:17 -0500 Original-To: ding@ifi.uio.no Xref: main.gmane.org gmane.emacs.gnus.general:4040 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4040 In `gnus-msg.el', the fun `gnus-inews-insert-bfcc' invokes `gnus-inews-narrow-to-headers' and then tries to invoke `mail-position-on-field' which searches for the `--text follows this line--' marker that follows the headers. Because the buffer has been narrowed, the search fails and an error signal is thrown. I modified `gnus-inews-insert-bfcc' like this: (defun gnus-inews-insert-bfcc () "Insert Bcc and Fcc headers." (save-excursion (save-restriction ;(gnus-inews-narrow-to-headers) ;<---- commented out this line and the problem went away. Michael.