]> code.delx.au - gnu-emacs/commitdiff
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-126
authorMiles Bader <miles@gnu.org>
Tue, 28 Feb 2006 00:38:35 +0000 (00:38 +0000)
committerMiles Bader <miles@gnu.org>
Tue, 28 Feb 2006 00:38:35 +0000 (00:38 +0000)
Merge from gnus--rel--5.10

Patches applied:

 * gnus--rel--5.10  (patch 40-42)

   - Merge from emacs--devo--0
   - Update from CVS

etc/gnus-tut.txt
lisp/gnus/ChangeLog
lisp/gnus/flow-fill.el
lisp/gnus/gnus-sum.el
man/ChangeLog
man/emacs-mime.texi

index 5dd26f1dfc5738558e1cc8b5e64dbb9ca9b37a18..43a1f6474885d96f4771a496472bcd4370a1da39 100644 (file)
@@ -223,7 +223,7 @@ want this is beyond me, but here goes:
 
 Create the group by saying
 
-`M-a my.virtual.newsgroup<RET>nnvirtual<RET>^rec\.aquaria\.*<RET>'
+`G m my.virtual.newsgroup<RET>nnvirtual<RET>^rec\.aquaria\.*<RET>'
 
 This will create the group "nnvirtual:my.virtual.newsgroup", which
 will collect all articles from all the groups in the "rec.aquaria"
index 87327dde4823113d6203b8784645ea381514361d..003504b2f12693d68a8cb360b00624d141d7172c 100644 (file)
@@ -1,3 +1,13 @@
+2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
+       first or last are nil.
+
+2006-02-24  Simon Josefsson  <jas@extundo.com>
+
+       * flow-fill.el (fill-flowed): Flow-fill unquoted lines too.
+       Merge of 2005-10-26 change from the trunk.
+
 2006-02-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
        * pgg-parse.el (top-level): Don't require custom, it is
        autoloaded.  (To sync with No Gnus.)
 
-2005-05-09  Simon Josefsson  <jas@extundo.com>
+2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
 
-       * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching,
-       tiny patch from "Georg C. F. Greve" <greve@gnu.org>.
+       * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
 
 2005-10-08  Simon Josefsson  <jas@extundo.com>
 
 
        * deuglify.el (gnus-outlook-deuglify): Add :version.
 
-       * html2text.el: Beautify code.  Improve doc strings.  Some checkdoc
-       cleanup.
+       * html2text.el: Beautify code.  Improve doc strings.  Some
+       checkdoc cleanup.
        (html2text-get-attr, html2text-fix-paragraph): Simplify code.
-       (html2text-format-tag-list): Add "strong" and "em".
-       From "Alfred M. Szmidt" <ams@kemisten.nu> (tiny change).
+
+2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
+
+       * html2text.el (html2text-format-tag-list): Add "strong" and "em".
 
 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
        function if it is set.
 
-2004-08-31  Simon Josefsson  <jas@extundo.com>
+2004-08-30  Andreas Schwab  <schwab@suse.de>
 
        * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
-       ?* and ?\; (tiny patch).  From Andreas Schwab <schwab@suse.de>.
+       ?* and ?\;.
 
        * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
-       and ?\' to symbol instead of whitespace (tiny patch).
-       From Andreas Schwab <schwab@suse.de>.
+       and ?\' to symbol instead of whitespace.
 
 2004-08-31  Jesper Harder  <harder@ifa.au.dk>
 
index 480505549c9efd805109ffc372045cd7d874eaf0..98697439106ac0ba37b53c8c0e77ecc9e3896d8e 100644 (file)
@@ -121,7 +121,7 @@ RFC 2646 suggests 66 characters for readability."
     (while (re-search-forward " $" nil t)
       (when (save-excursion
              (beginning-of-line)
-             (looking-at "^\\(>+\\)\\( ?\\)"))
+             (looking-at "^\\(>*\\)\\( ?\\)"))
        (let ((quote (match-string 1))
              sig)
          (if (string= quote "")
index b2a70b8fcb645d1e07a11fcf9ae460d102218470..70dabcd525b78e40e50dd7bd0bd369e7d25619af 100644 (file)
@@ -6452,10 +6452,12 @@ displayed, no centering will be performed."
          (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
          (setq read (cdr read)))))
     ;; And add the last unread articles.
-    (cond ((< first last)
-           (push (cons first last) unread))
-          ((= first last)
-           (push first unread)))
+    (cond ((not (and first last))
+          nil)
+         ((< first last)
+          (push (cons first last) unread))
+         ((= first last)
+          (push first unread)))
     ;; Return the sequence of unread articles.
     (delq 0 (nreverse unread))))
 
index e7e2f620263be479849007fa203836d89a65d03e..af06758f6e0e837b495a5525a90f4a101880a38f 100644 (file)
@@ -1,3 +1,8 @@
+2006-02-27  Simon Josefsson  <jas@extundo.com>
+
+       * emacs-mime.texi (Flowed text): Add mm-fill-flowed.  (Sync
+       2004-01-27 from the trunk).
+
 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
 
        * cc-mode.texi: Rename c-hungry-backspace to
index 3e9f2b5f283fd6cd275e428842f91e0d4c2d7fbe..69c1c21b5aacc4f051740bd1bfe277a9d1c512b3 100644 (file)
@@ -983,7 +983,11 @@ together and wrapped after the column decided by
 @code{fill-flowed-display-column}.  The default is to wrap after
 @code{fill-column}.
 
-
+@table @code
+@item mm-fill-flowed
+@vindex mm-fill-flowed
+If non-@code{nil} a format=flowed article will be displayed flowed.
+@end table
 
 
 @node Interface Functions