From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4554 Path: main.gmane.org!not-for-mail From: Masaharu Onishi Newsgroups: gmane.emacs.gnus.general Subject: [sgnus-0.26] gnus-summary-refer-parent-article does not work Date: Fri, 22 Dec 1995 14:55:01 +0900 Message-ID: <199512220555.OAA19869@onsgw.nova.co.jp> NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035145286 30068 80.91.224.250 (20 Oct 2002 20:21:26 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:21:26 +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 WAA07479 for ; Thu, 21 Dec 1995 22:18:49 -0800 Original-Received: from onsgw.nova.co.jp (onishi@onsgw.nova.co.jp [202.13.6.222]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Fri, 22 Dec 1995 06:55:13 +0100 Original-Received: (from onishi@localhost) by onsgw.nova.co.jp (8.6.11+2.5Wb2/3.4W-onsgw005) id OAA19869; Fri, 22 Dec 1995 14:55:01 +0900 Original-To: ding@ifi.uio.no Xref: main.gmane.org gmane.emacs.gnus.general:4554 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4554 "gnus-summary-refer-parent-article" does not work when actual References header is used, because "gnus-parent-id" does not expect references-string containing newlines. Following patch is one solution. --- gnus.el.org Thu Dec 21 12:09:47 1995 +++ gnus.el Fri Dec 22 14:32:13 1995 @@ -3478,7 +3478,7 @@ (defun gnus-parent-id (references) "Return the last Message-ID in REFERENCES." (and references - (string-match "\\(<[^<>]+>\\) *$" references) + (string-match "\\(<[^<>]+>\\) *\n?\\'" references) (substring references (match-beginning 1) (match-end 1)))) (defun gnus-ephemeral-group-p (group) -- Masaharu Onishi onishi@nova.co.jp