Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus v5.4.28 is released
@ 1997-03-17 23:36 Lars Magne Ingebrigtsen
  1997-03-18  4:09 ` Jason R. Mastaler
  1997-03-18 10:40 ` Jan Vroonhof
  0 siblings, 2 replies; 6+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-03-17 23:36 UTC (permalink / raw)


Bug fixes.

Get it from <URL:http://www.ifi.uio.no/~larsi/gnus.tar.gz> or 
"ftp.ifi.uio.no:/pub/emacs/gnus/".  The patch is available as
<URL:http://www.ifi.uio.no/~larsi/ding-patches/gnus-5.4.27-5.4.28.diff.gz>

ChangeLog since last release:

Tue Mar 18 00:35:06 1997  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>

	* gnus.el: Gnus v5.4.28 is released.

Mon Mar 17 18:36:11 1997  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>

	* gnus-sum.el (gnus-update-marks): Use `list' instead of
	`articles'.

	* nndoc.el (nndoc-rfc822-forward-type-p): Renamed.
	(nndoc-rfc822-forward-body-end-function): Ditto.



-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@ifi.uio.no * Lars Ingebrigtsen


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Gnus v5.4.28 is released
  1997-03-17 23:36 Gnus v5.4.28 is released Lars Magne Ingebrigtsen
@ 1997-03-18  4:09 ` Jason R. Mastaler
  1997-03-18 13:27   ` Lars Magne Ingebrigtsen
  1997-03-18 10:40 ` Jan Vroonhof
  1 sibling, 1 reply; 6+ messages in thread
From: Jason R. Mastaler @ 1997-03-18  4:09 UTC (permalink / raw)


After upgrading to 5.4.28 from 5.4.11 I suddenly don't see
duplicate supression any longer in my nnfolder mail groups.
What gives?


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Gnus v5.4.28 is released
  1997-03-17 23:36 Gnus v5.4.28 is released Lars Magne Ingebrigtsen
  1997-03-18  4:09 ` Jason R. Mastaler
@ 1997-03-18 10:40 ` Jan Vroonhof
  1 sibling, 0 replies; 6+ messages in thread
From: Jan Vroonhof @ 1997-03-18 10:40 UTC (permalink / raw)


Lars Magne Ingebrigtsen <larsi@ifi.uio.no> 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" #<buffer "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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Gnus v5.4.28 is released
  1997-03-18  4:09 ` Jason R. Mastaler
@ 1997-03-18 13:27   ` Lars Magne Ingebrigtsen
  1997-03-20 16:49     ` Hrvoje Niksic
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-03-18 13:27 UTC (permalink / raw)


jason@mastaler.com (Jason R. Mastaler) writes:

> After upgrading to 5.4.28 from 5.4.11 I suddenly don't see
> duplicate supression any longer in my nnfolder mail groups.
> What gives?

It's a new feetcher.  Or a bug fix.  Gnus will now display articles
that have the same Message-ID.

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@ifi.uio.no * Lars Ingebrigtsen


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Gnus v5.4.28 is released
  1997-03-18 13:27   ` Lars Magne Ingebrigtsen
@ 1997-03-20 16:49     ` Hrvoje Niksic
  1997-03-20 19:07       ` Jason R. Mastaler
  0 siblings, 1 reply; 6+ messages in thread
From: Hrvoje Niksic @ 1997-03-20 16:49 UTC (permalink / raw)


Lars Magne Ingebrigtsen <larsi@ifi.uio.no> writes:

> It's a new feetcher.  Or a bug fix.  Gnus will now display articles
> that have the same Message-ID.

I think that (the new behaviour) is good.  For example, I copy things
to my archive group using `B c nnml+save:news-stuff RET' frequently.
It used to happen that when I copy the same article twice by mistake,
I wouldn't see it.  Now I'll see it and erase the duplicate -- a
definite improvement.

-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
Speak softly and carry a +6 two-handed sword.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Gnus v5.4.28 is released
  1997-03-20 16:49     ` Hrvoje Niksic
@ 1997-03-20 19:07       ` Jason R. Mastaler
  0 siblings, 0 replies; 6+ messages in thread
From: Jason R. Mastaler @ 1997-03-20 19:07 UTC (permalink / raw)


Hrvoje Niksic <hniksic@srce.hr> writes:

> Lars Magne Ingebrigtsen <larsi@ifi.uio.no> writes:
> 
> > It's a new feetcher.  Or a bug fix.  Gnus will now display articles
> > that have the same Message-ID.
> 
> I think that (the new behaviour) is good.  For example, I copy things
> to my archive group using `B c nnml+save:news-stuff RET' frequently.
> It used to happen that when I copy the same article twice by mistake,
> I wouldn't see it.  Now I'll see it and erase the duplicate -- a
> definite improvement.

True, but some like the old behavior better which Lars gives us
the option to use if this is the case.  

`gnus-summary-ignore-duplicates' is the variable that controls this.

-- 
Jason R. Mastaler                                 jason@mastaler.com


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~1997-03-20 19:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-03-17 23:36 Gnus v5.4.28 is released Lars Magne Ingebrigtsen
1997-03-18  4:09 ` Jason R. Mastaler
1997-03-18 13:27   ` Lars Magne Ingebrigtsen
1997-03-20 16:49     ` Hrvoje Niksic
1997-03-20 19:07       ` Jason R. Mastaler
1997-03-18 10:40 ` Jan Vroonhof

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).