From d81968c05e55fb4b1c2aa251984d51bcb0c35df0 Mon Sep 17 00:00:00 2001 From: morioka Date: Sat, 27 Jun 1998 07:57:45 +0000 Subject: [PATCH] Gnus v5.6.20. --- lisp/ChangeLog | 13 +++++++++++++ lisp/gnus-sum.el | 10 +++++----- lisp/gnus.el | 2 +- lisp/message.el | 2 +- texi/gnus.texi | 10 +++++----- texi/message.texi | 6 +++--- 6 files changed, 28 insertions(+), 15 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 51f413d..671dafe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,16 @@ +Sat Jun 27 08:56:08 1998 Lars Magne Ingebrigtsen + + * gnus.el: Gnus v5.6.20 is released. + +Sat Jun 27 08:49:51 1998 Arne Georg Gleditsch + + * gnus-sum.el (gnus-parent-headers): Check better for headers. + +Sat Jun 27 08:45:09 1998 Lars Magne Ingebrigtsen + + * message.el (message-check-news-body-syntax): Buggy checksum + check. + Sat Jun 27 07:59:22 1998 Lars Magne Ingebrigtsen * gnus.el: Gnus v5.6.19 is released. diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el index 1bb146a..7b53900 100644 --- a/lisp/gnus-sum.el +++ b/lisp/gnus-sum.el @@ -3258,13 +3258,13 @@ If LINE, insert the rebuilt thread starting on line LINE." (headers in-headers) references) (while (and parent - headers (not (zerop generation)) (setq references (mail-header-references headers))) - (when (and references - (setq parent (gnus-parent-id references)) - (setq headers (car (gnus-id-to-thread parent)))) - (decf generation))) + (setq headers (if (and references + (setq parent (gnus-parent-id references))) + (car (gnus-id-to-thread parent)) + nil)) + (decf generation)) (and (not (eq headers in-headers)) headers))) diff --git a/lisp/gnus.el b/lisp/gnus.el index aec3201..3cbbb76 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -250,7 +250,7 @@ is restarted, and sometimes reloaded." :link '(custom-manual "(gnus)Exiting Gnus") :group 'gnus) -(defconst gnus-version-number "5.6.19" +(defconst gnus-version-number "5.6.20" "Version number for this version of Gnus.") (defconst gnus-version (format "Gnus v%s" gnus-version-number) diff --git a/lisp/message.el b/lisp/message.el index ff8c032..2bedcf9 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -2438,7 +2438,7 @@ to find out how to use this." (message-check 'new-text (or (not message-checksum) - (not (eq (message-checksum) (car message-checksum))) + (not (eq (message-checksum) message-checksum)) (y-or-n-p "It looks like no new text has been added. Really post? "))) ;; Check the length of the signature. diff --git a/texi/gnus.texi b/texi/gnus.texi index 1392ae6..8ce7bcc 100644 --- a/texi/gnus.texi +++ b/texi/gnus.texi @@ -1,7 +1,7 @@ \input texinfo @c -*-texinfo-*- @setfilename gnus -@settitle Gnus 5.6.19 Manual +@settitle Gnus 5.6.20 Manual @synindex fn cp @synindex vr cp @synindex pg cp @@ -316,7 +316,7 @@ into another language, under the above conditions for modified versions. @tex @titlepage -@title Gnus 5.6.19 Manual +@title Gnus 5.6.20 Manual @author by Lars Magne Ingebrigtsen @page @@ -352,7 +352,7 @@ can be gotten by any nefarious means you can think of---@sc{nntp}, local spool or your mbox file. All at the same time, if you want to push your luck. -This manual corresponds to Gnus 5.6.19. +This manual corresponds to Gnus 5.6.20. @end ifinfo @@ -15841,7 +15841,7 @@ actually are people who are using Gnus. Who'd'a thunk it! * ding Gnus:: New things in Gnus 5.0/5.1, the first new Gnus. * September Gnus:: The Thing Formally Known As Gnus 5.3/5.3. * Red Gnus:: Third time best---Gnus 5.4/5.5. -* Quassia Gnus:: Two times two is four, or Gnus 5.6.19. +* Quassia Gnus:: Two times two is four, or Gnus 5.6.20. @end menu These lists are, of course, just @emph{short} overviews of the @@ -16376,7 +16376,7 @@ Emphasized text can be properly fontisized: @node Quassia Gnus @subsubsection Quassia Gnus -New features in Gnus 5.6.19: +New features in Gnus 5.6.20: @itemize @bullet diff --git a/texi/message.texi b/texi/message.texi index f6a3cfc..1c808dd 100644 --- a/texi/message.texi +++ b/texi/message.texi @@ -1,7 +1,7 @@ \input texinfo @c -*-texinfo-*- @setfilename message -@settitle Message 5.6.19 Manual +@settitle Message 5.6.20 Manual @synindex fn cp @synindex vr cp @synindex pg cp @@ -42,7 +42,7 @@ into another language, under the above conditions for modified versions. @tex @titlepage -@title Message 5.6.19 Manual +@title Message 5.6.20 Manual @author by Lars Magne Ingebrigtsen @page @@ -83,7 +83,7 @@ Message mode buffers. * Key Index:: List of Message mode keys. @end menu -This manual corresponds to Message 5.6.19. Message is distributed with +This manual corresponds to Message 5.6.20. Message is distributed with the Gnus distribution bearing the same version number as this manual has. -- 1.7.10.4