From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/21751 Path: main.gmane.org!not-for-mail From: Robert Bihlmeyer Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus has something to hide Date: 04 Mar 1999 11:14:08 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035159797 24555 80.91.224.250 (21 Oct 2002 00:23:17 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:23:17 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from fisher.math.uh.edu (fisher.math.uh.edu [129.7.128.35]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id FAA13823 for ; Thu, 4 Mar 1999 05:45:22 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by fisher.math.uh.edu (8.9.1/8.9.1) with ESMTP id EAB06022; Thu, 4 Mar 1999 04:41:39 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 04 Mar 1999 04:42:49 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id EAA27164 for ; Thu, 4 Mar 1999 04:42:37 -0600 (CST) Original-Received: from relay8.Austria.EU.net (relay8.Austria.EU.net [193.154.160.146]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id FAA13801 for ; Thu, 4 Mar 1999 05:42:28 -0500 (EST) Original-Received: (from uucp@localhost) by relay8.Austria.EU.net (8.9.1/8.9.1) with UUCP id LAA15994 for ding@gnus.org; Thu, 4 Mar 1999 11:21:54 +0100 (MET) Original-Received: (qmail 823 invoked by uid 115); 4 Mar 1999 10:14:12 -0000 Original-To: Carsten Leonhardt X-Attribution: Robbe In-Reply-To: Carsten Leonhardt's message of "03 Mar 1999 12:43:34 +0100" Original-Lines: 62 User-Agent: Gnus/5.070079 (Pterodactyl Gnus v0.79) XEmacs/20.4 (Emerald) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:21751 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:21751 --=-=-= Hi, >>>>> On 03 Mar 1999 12:43:34 +0100 >>>>> Carsten Leonhardt said: >> I'm including part of a massage from comp.risks. Note that Gnus >> (0.79 here) makes one line invisible [...] Carsten> I see this, too. When I set gnus-tread-hide-boring-headers Carsten> to nil, it's shown, if t, it's hidden. Can you verify this? Indeed. Gnus seems to think that "... Source:" is a header. The following patch helps (it also prevents headers which end with a colon to be deemed "boring"), but the real puzzler is why `article-narrow-to-head' does not work correctly. --=-=-= Content-Type: application/x-patch; name=*patch* Content-Disposition: attachment Content-Transfer-Encoding: 8bit diff -u pgnus/lisp/ChangeLog~ pgnus/lisp/ChangeLog --- pgnus/lisp/ChangeLog~ Thu Mar 4 11:12:34 1999 +++ pgnus/lisp/ChangeLog Thu Mar 4 11:12:34 1999 @@ -1,3 +1,8 @@ +1999-03-04 Robert Bihlmeyer + + * gnus-art.el (article-hide-boring-headers): Field names must not + contain whitespace. + Fri Feb 26 18:54:16 1999 Lars Magne Ingebrigtsen * gnus.el: Pterodactyl Gnus v0.79 is released. diff -u pgnus/lisp/gnus-art.el~ pgnus/lisp/gnus-art.el --- pgnus/lisp/gnus-art.el~ Thu Mar 4 11:11:33 1999 +++ pgnus/lisp/gnus-art.el Thu Mar 4 11:11:33 1999 @@ -1044,7 +1044,7 @@ (cond ;; Hide empty headers. ((eq elem 'empty) - (while (re-search-forward "^[^:]+:[ \t]*\n[^ \t]" nil t) + (while (re-search-forward "^[^: \t]+:[ \t]*\n[^ \t]" nil t) (forward-line -1) (gnus-article-hide-text-type (progn (beginning-of-line) (point)) --=-=-= Robbe -- Robert Bihlmeyer reads: Deutsch, English, MIME, Latin-1, NO SPAM! --=-=-=--