From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/10262 Path: main.gmane.org!not-for-mail From: Jan Vroonhof Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus v5.4.28 is released Date: 18 Mar 1997 11:40:31 +0100 Sender: vroonhof@math.ethz.ch Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.105) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035150163 23399 80.91.224.250 (20 Oct 2002 21:42:43 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:42:43 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.5/8.8.5) with SMTP id DAA17466 for ; Tue, 18 Mar 1997 03:00:45 -0800 Original-Received: from frege.math.ethz.ch (root@frege-d-math-north-g-west.math.ethz.ch [129.132.145.3]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id ; Tue, 18 Mar 1997 11:43:42 +0100 Original-Received: from fresnel.math.ethz.ch (vroonhof@fresnel [129.132.145.6]) by frege.math.ethz.ch (8.6.12/Main-STAT-mailer) with ESMTP id LAA06628; Tue, 18 Mar 1997 11:43:16 +0100 Original-Received: (vroonhof@localhost) by fresnel.math.ethz.ch (8.6.9/D-MATH-client) id LAA09651; Tue, 18 Mar 1997 11:40:32 +0100 Original-To: ding@ifi.uio.no, Lars Magne Ingebrigtsen In-Reply-To: Lars Magne Ingebrigtsen's message of 18 Mar 1997 00:36:23 +0100 Original-Lines: 32 X-Mailer: Gnus v5.4.27/XEmacs 19.15(beta99) Xref: main.gmane.org gmane.emacs.gnus.general:10262 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:10262 Lars Magne Ingebrigtsen writes: There is something is fishy going on with the new nnfolder code. For some reason or another 'nnfolder-buffer-alist' sometime contains something like (("allib" #) ("tex-nl" nil)) Note the nil instead of a buffer in the second item. This craches on a typo in the lambda exit function defined in nnfolder-request-scan. The following patch at least solves that problem (I think it is a minor thinko): --- nnfolder.el.orig Mon Mar 17 17:40:28 1997 +++ nnfolder.el Tue Mar 18 11:29:27 1997 @@ -225,7 +225,7 @@ (let ((bufs nnfolder-buffer-alist)) (save-excursion (while bufs - (if (not (buffer-name (nth 1 (car bufs)))) + (if (not (buffer-live-p (nth 1 (car bufs)))) (setq nnfolder-buffer-alist (delq (car bufs) nnfolder-buffer-alist)) (set-buffer (nth 1 (car bufs))) >>From the look of it the new nnfolder code is supposed to keep open nnfolder buffers as long as possible isn't it? If that is the intended behaviour, it isn't working here. Jan