From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4784 Path: main.gmane.org!not-for-mail From: Steven L Baur Newsgroups: gmane.emacs.gnus.general Subject: Re: September Gnus 0.28 is released Date: 17 Jan 1996 17:39:58 -0800 Organization: Miranova Systems, Inc. Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.40) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035145483 30790 80.91.224.250 (20 Oct 2002 20:24:43 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:24:43 +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.7.3/8.6.9) with SMTP id SAA11178 for ; Wed, 17 Jan 1996 18:39:21 -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 ; Thu, 18 Jan 1996 02:42:49 +0100 Original-Received: (from steve@localhost) by miranova.com (8.7.3/8.6.9) id RAA10799; Wed, 17 Jan 1996 17:40:05 -0800 Original-To: ding@ifi.uio.no X-Url: http://www.miranova.com/%7Esteve/ In-Reply-To: Lars Magne Ingebrigtsen's message of 17 Jan 1996 14:27:21 -0800 Original-Lines: 70 X-Mailer: September Gnus v0.28/XEmacs 19.13 Xref: main.gmane.org gmane.emacs.gnus.general:4784 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4784 This fixes a couple of typos, one of which is XEmacs only. I haven't tested the boring-headers fix, but it seems like the reasonable thing to do. (Many pardons if this comes out garbled, I have a bad feeling right now). =================================================================== RCS file: RCS/ChangeLog,v retrieving revision 1.24 diff -u -r1.24 ChangeLog --- ChangeLog 1996/01/18 00:38:14 1.24 +++ ChangeLog 1996/01/18 01:10:50 @@ -1,3 +1,11 @@ +Wed Jan 17 17:00:55 1996 Steven L. Baur + + * gnus.el (gnus-article-hide-boring-headers): gnus-article-hide-header + needed a parameter. + + * gnus-xmas.el (gnus-xmas-find-file-noselect): + nnheader-insert-file-contents-literally lost the prefix + Wed Jan 17 22:58:05 1996 Lars Magne Ingebrigtsen * gnus.el (gnus-article-hide-header): Hide boring headers =================================================================== RCS file: RCS/gnus.el,v retrieving revision 1.23 diff -u -r1.23 gnus.el --- gnus.el 1996/01/18 00:38:14 1.23 +++ gnus.el 1996/01/18 01:08:43 @@ -13135,9 +13135,11 @@ (cond ;; Hide empty headers. ((eq elem 'empty) - (while (re-search-forward "^[^:]+:[ \t]\n[^ \t]" nil t) + (while (re-search-forward "^\\([^:]+\\):[ \t]\n[^ \t]" nil t) (forward-line -1) - (gnus-article-hide-header))) + (gnus-article-hide-header + (buffer-substring (match-beginning 1) + (match-end 1))))) ;; Hide boring Newsgroups header. ((eq elem 'newsgroups) (when (equal (mail-fetch-field "newsgroups") =================================================================== RCS file: RCS/gnus-xmas.el,v retrieving revision 1.9 diff -u -r1.9 gnus-xmas.el --- gnus-xmas.el 1996/01/18 00:38:14 1.9 +++ gnus-xmas.el 1996/01/18 01:22:12 @@ -24,6 +24,7 @@ ;;; Code: +(eval-when-compile (require 'cl)) (require 'text-props) (defvar menu-bar-mode t) @@ -632,7 +633,7 @@ (erase-buffer) (if rawfile (condition-case () - (nnheader-insert-file-contents-literally filename t) + (insert-file-contents-literally filename t) (file-error ;; Unconditionally set error (setq error t))) -- steve@miranova.com baur