<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.emacs.gnus.cvs">
    <title>gmane.emacs.gnus.cvs</title>
    <link>http://blog.gmane.org/gmane.emacs.gnus.cvs</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12324"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12323"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12322"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12321"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12320"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12319"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12318"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12317"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12316"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12315"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12314"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12313"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12312"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12311"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12310"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12309"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12308"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12307"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12306"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12305"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12324">
    <title>[gnus git]  branch master updated: m0-7-21-g3a7d9b6 =1= gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left double angle quotation mark.</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12324</link>
    <description>&lt;pre&gt;       via  3a7d9b62cd1d70391338e1d833141a184599b017 (commit)
      from  b92552500dc7796df605f37430daa09213b1eca2 (commit)


- Log -----------------------------------------------------------------
commit 3a7d9b62cd1d70391338e1d833141a184599b017
Author: Adam SjÃ¸gren &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
Date:   Mon May 20 00:17:20 2013 +0200

    gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left double angle quotation mark.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9efb9fd..499da76 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-20  Adam SjÃ¸gren  &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
+
+* gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
+double angle quotation mark.
+
 2013-05-19  Adam SjÃ¸gren  &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
 
 * message.el (message-insert-formatted-citation-line): handle finding
diff --git a/lisp/gnus-spec.el b/lisp/gnus-spec.el
index 2606b88..081bc87 100644
--- a/lisp/gnus-spec.el
+++ b/lisp/gnus-spec.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -441,7 +441,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; characters when given a pad value."
       (delim (aref (match-string 2) 0)))
   (if (or (= delim ?\()
   (= delim ?\{)
-  (= delim ?\Â«))
+  (= delim ?\u00AB)) ; Â«
       (replace-match (concat "\"("
      (cond ((= delim ?\() "mouse")
    ((= delim ?\{) "face")

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog    |    5 +++++
 lisp/gnus-spec.el |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Adam Sjøgren</dc:creator>
    <dc:date>2013-05-19T22:19:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12323">
    <title>[gnus git]  branch master updated: m0-7-20-gb925525 =1= message.el (message-insert-formatted-citation-line): handle case I broke - LASTNAME, FIRSTNAME.</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12323</link>
    <description>&lt;pre&gt;       via  b92552500dc7796df605f37430daa09213b1eca2 (commit)
      from  3347a965e2216d80b867d80c2edfab8ac5bd6aa2 (commit)


- Log -----------------------------------------------------------------
commit b92552500dc7796df605f37430daa09213b1eca2
Author: Adam SjÃ¸gren &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
Date:   Sun May 19 20:59:23 2013 +0200

    message.el (message-insert-formatted-citation-line): handle case I broke - LASTNAME, FIRSTNAME.

diff --git a/lisp/message.el b/lisp/message.el
index 2374314..ca1a2e6 100644
--- a/lisp/message.el
+++ b/lisp/message.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -3997,7 +3997,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; See `message-citation-line-format'."
                         ((or (= count 2) (= count 3)) (setq fname (car names)
                                                             lname (mapconcat 'identity (cdr names) " ")))
                         ((&amp;gt; count 3) (setq fname (mapconcat 'identity (butlast names (- count 2)) " ")
-                                           lname (mapconcat 'identity (nthcdr 2 names) " "))) )))
+                                           lname (mapconcat 'identity (nthcdr 2 names) " "))) )
+                  (when (string-match "\\(.*\\),\\'" fname)
+                    (let ((newlname (match-string 1 fname)))
+                      (setq fname lname lname newlname)))))
       ;; The following letters are not used in `format-time-string':
       (push ?E lst) (push "&amp;lt;E&amp;gt;" lst)
       (push ?F lst) (push fname lst)

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/message.el |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Adam Sjøgren</dc:creator>
    <dc:date>2013-05-19T19:03:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12322">
    <title>[gnus git]  branch master updated: m0-7-19-g3347a96 =1= Fix missing space.</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12322</link>
    <description>&lt;pre&gt;       via  3347a965e2216d80b867d80c2edfab8ac5bd6aa2 (commit)
      from  8e3b3fa6d8b9a97c183d9f7ae79657fe11c5af29 (commit)


- Log -----------------------------------------------------------------
commit 3347a965e2216d80b867d80c2edfab8ac5bd6aa2
Author: Adam SjÃ¸gren &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
Date:   Sun May 19 20:37:38 2013 +0200

    Fix missing space.


-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 texi/ChangeLog |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Adam Sjøgren</dc:creator>
    <dc:date>2013-05-19T18:37:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12321">
    <title>[gnus git]  branch master updated: m0-7-18-g8e3b3fa =3= message.el (message-insert-formatted-citation-line): handle finding first/lastname when more than 2 names appear. ; gnus.texi: Fix missing backslash on \\&amp;. ; Show title attribute of span elements as mouse over text.</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12321</link>
    <description>&lt;pre&gt;       via  8e3b3fa6d8b9a97c183d9f7ae79657fe11c5af29 (commit)
       via  8604c8dba00059ece9c624149113eeaf60424071 (commit)
       via  413816a18bfc116cd6e54cea85f880220a978945 (commit)
      from  786ff2141fd1613c88035aae899ec9d71ffb5cd0 (commit)


- Log -----------------------------------------------------------------
commit 8e3b3fa6d8b9a97c183d9f7ae79657fe11c5af29
Author: Adam SjÃ¸gren &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
Date:   Fri May 17 00:00:02 2013 +0200

    message.el (message-insert-formatted-citation-line): handle finding first/lastname when more than 2 names appear.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9506db7..9efb9fd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,5 +1,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 2013-05-19  Adam SjÃ¸gren  &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
 
+* message.el (message-insert-formatted-citation-line): handle finding
+first/lastname when more than 2 names appear.
+
+2013-05-19  Adam SjÃ¸gren  &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
+
 * shr.el (shr-tag-span): New function.
 
 2013-05-18  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
diff --git a/lisp/message.el b/lisp/message.el
index 920e805..2374314 100644
--- a/lisp/message.el
+++ b/lisp/message.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -3988,18 +3988,16 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; See `message-citation-line-format'."
     (let ((i ?A) lst)
       (when (stringp name)
 ;; Guess first name and last name:
-(cond ((string-match
-"\\`\\(\\w\\|[-.]\\)+ \\(\\w\\|[-.]\\)+\\'" name)
-       (setq fname (nth 0 (split-string name "[ \t]+"))
-     lname (nth 1 (split-string name "[ \t]+"))))
-      ((string-match
-"\\`\\(\\w\\|[-.]\\)+, \\(\\w\\|[-.]\\)+\\'" name)
-       (setq fname (nth 1 (split-string name "[ \t,]+"))
-     lname (nth 0 (split-string name "[ \t,]+"))))
-      ((string-match
-"\\`\\(\\w\\|[-.]\\)+\\'" name)
-       (setq fname name
-     lname ""))))
+                (let* ((names (delq nil (mapcar (lambda (x)
+                                                 (if (string-match "\\`\\(\\w\\|[-.]\\)+\\'" x) x nil))
+                                               (split-string name "[ \t]+"))))
+                      (count (length names)))
+                  (cond ((= count 1) (setq fname (car names)
+                                           lname ""))
+                        ((or (= count 2) (= count 3)) (setq fname (car names)
+                                                            lname (mapconcat 'identity (cdr names) " ")))
+                        ((&amp;gt; count 3) (setq fname (mapconcat 'identity (butlast names (- count 2)) " ")
+                                           lname (mapconcat 'identity (nthcdr 2 names) " "))) )))
       ;; The following letters are not used in `format-time-string':
       (push ?E lst) (push "&amp;lt;E&amp;gt;" lst)
       (push ?F lst) (push fname lst)

commit 8604c8dba00059ece9c624149113eeaf60424071
Author: Adam SjÃ¸gren &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
Date:   Tue Sep 20 20:56:45 2011 +0200

    gnus.texi: Fix missing backslash on \\&amp;amp;.

diff --git a/texi/ChangeLog b/texi/ChangeLog
index 443cb5b..59723f9 100644
--- a/texi/ChangeLog
+++ b/texi/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-19  Adam SjÃ¸gren &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
+
+* gnus.texi (Fancy Mail Splitting): Fix typo.
+
 2013-03-17  Paul Eggert  &amp;lt;eggert&amp;lt; at &amp;gt;cs.ucla.edu&amp;gt;
 
 doc: convert some TeX accents to UTF-8
diff --git a/texi/gnus.texi b/texi/gnus.texi
index 52eb209..ad80430 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -15401,7 +15401,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; substitutions in the group names), you can say things like:
 In this example, messages sent to &amp;lt; at &amp;gt;samp{debian-foo&amp;lt; at &amp;gt;&amp;lt; at &amp;gt;lists.debian.org}
 will be filed in &amp;lt; at &amp;gt;samp{mail.debian.foo}.
 
-If the string contains the element &amp;lt; at &amp;gt;samp{\&amp;amp;}, then the previously
+If the string contains the element &amp;lt; at &amp;gt;samp{\\&amp;amp;}, then the previously
 matched string will be substituted.  Similarly, the elements &amp;lt; at &amp;gt;samp{\\1}
 up to &amp;lt; at &amp;gt;samp{\\9} will be substituted with the text matched by the
 groupings 1 through 9.

commit 413816a18bfc116cd6e54cea85f880220a978945
Author: Adam SjÃ¸gren &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
Date:   Sun Mar 27 10:29:08 2011 +0200

    Show title attribute of span elements as mouse over text.
    
    * shr.el (shr-tag-span): New function.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 92bc307..9506db7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-19  Adam SjÃ¸gren  &amp;lt;asjo&amp;lt; at &amp;gt;koldfront.dk&amp;gt;
+
+* shr.el (shr-tag-span): New function.
+
 2013-05-18  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
 
 * message.el (message-mode): Use message-mode-abbrev-table,
diff --git a/lisp/shr.el b/lisp/shr.el
index 5c1b99e..2d2272d 100644
--- a/lisp/shr.el
+++ b/lisp/shr.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1088,6 +1088,14 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; ones, in case fg and bg are nil."
     (shr-indent))
   (shr-generic cont))
 
+(defun shr-tag-span (cont)
+  (let ((title (cdr (assq :title cont))))
+    (shr-generic cont)
+    (when title
+      (when shr-start
+        (let ((overlay (shr-make-overlay shr-start (point))))
+          (overlay-put overlay 'help-echo title))))))
+
 (defun shr-tag-h1 (cont)
   (shr-heading cont 'bold 'underline))
 

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog  |    9 +++++++++
 lisp/message.el |   22 ++++++++++------------
 lisp/shr.el     |    8 ++++++++
 texi/ChangeLog  |    4 ++++
 texi/gnus.texi  |    2 +-
 5 files changed, 32 insertions(+), 13 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Adam Sjøgren</dc:creator>
    <dc:date>2013-05-19T18:34:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12320">
    <title>[gnus git]  branch master updated: m0-7-15-g786ff21 =1= message.el (message-mode): Use message-mode-abbrev-table, with text-mode-abbrev-table as parent (Bug#14413)</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12320</link>
    <description>&lt;pre&gt;       via  786ff2141fd1613c88035aae899ec9d71ffb5cd0 (commit)
      from  d2e1e2718357db738ca83e7ba9637685319222f6 (commit)


- Log -----------------------------------------------------------------
commit 786ff2141fd1613c88035aae899ec9d71ffb5cd0
Author: Glenn Morris &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
Date:   Sat May 18 12:27:40 2013 +0000

    message.el (message-mode): Use message-mode-abbrev-table, with text-mode-abbrev-table as parent (Bug#14413)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c12d076..92bc307 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-18  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
+
+* message.el (message-mode): Use message-mode-abbrev-table,
+with text-mode-abbrev-table as parent.  (Bug#14413)
+
 2013-05-16  Katsumi Yamaoka  &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
 
 * message.el (message-expand-group): Decode group names.
diff --git a/lisp/message.el b/lisp/message.el
index 8e5b817..920e805 100644
--- a/lisp/message.el
+++ b/lisp/message.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2983,7 +2983,6 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; C-c M-n  `message-insert-disposition-notification-to'  (request receipt).
 C-c M-m  `message-mark-inserted-region' (mark region with enclosing tags).
 C-c M-f  `message-mark-insert-file' (insert file marked with enclosing tags).
 M-RET    `message-newline-and-reformat' (break the line and reformat)."
-  (setq local-abbrev-table text-mode-abbrev-table)
   (set (make-local-variable 'message-reply-buffer) nil)
   (set (make-local-variable 'message-inserted-headers) nil)
   (set (make-local-variable 'message-send-actions) nil)

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog  |    5 +++++
 lisp/message.el |    1 -
 2 files changed, 5 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-18T12:27:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12319">
    <title>[gnus git]  branch master updated: m0-7-14-gd2e1e27 =1= message.el (message-expand-group): Decode group names</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12319</link>
    <description>&lt;pre&gt;       via  d2e1e2718357db738ca83e7ba9637685319222f6 (commit)
      from  6a2843ac1260897fd7b4ae3c422b32fa83d37778 (commit)


- Log -----------------------------------------------------------------
commit d2e1e2718357db738ca83e7ba9637685319222f6
Author: Katsumi Yamaoka &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
Date:   Thu May 16 23:28:58 2013 +0000

    message.el (message-expand-group): Decode group names

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 24967e8..c12d076 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-16  Katsumi Yamaoka  &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
+
+* message.el (message-expand-group): Decode group names.
+
 2013-05-16  Julien Danjou  &amp;lt;julien&amp;lt; at &amp;gt;danjou.info&amp;gt;
 
 * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
diff --git a/lisp/message.el b/lisp/message.el
index f867938..8e5b817 100644
--- a/lisp/message.el
+++ b/lisp/message.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -8004,7 +8004,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; those headers."
 
 (defun message-expand-group ()
   "Expand the group name under point."
-  (let* ((b (save-excursion
+  (let ((b (save-excursion
       (save-restriction
 (narrow-to-region
  (save-excursion
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -8015,8 +8015,18 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; those headers."
 (skip-chars-backward "^, \t\n") (point))))
  (completion-ignore-case t)
          (e (progn (skip-chars-forward "^,\t\n ") (point)))
- (hashtb (and (boundp 'gnus-active-hashtb) gnus-active-hashtb)))
-    (message-completion-in-region e b hashtb)))
+group collection)
+    (when (and (boundp 'gnus-active-hashtb)
+       gnus-active-hashtb)
+      (mapatoms
+       (lambda (symbol)
+ (setq group (symbol-name symbol))
+ (push (if (string-match "[^\000-\177]" group)
+   (gnus-group-decoded-name group)
+ group)
+       collection))
+       gnus-active-hashtb))
+    (message-completion-in-region e b collection)))
 
 (defalias 'message-completion-in-region
   (if (fboundp 'completion-in-region)

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog  |    4 ++++
 lisp/message.el |   36 +++++++++++++++++++++++-------------
 2 files changed, 27 insertions(+), 13 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-16T23:29:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12318">
    <title>[gnus git]  branch master updated: m0-7-13-g6a2843a =1= gnus-notifications: use photo-file as app-icon</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12318</link>
    <description>&lt;pre&gt;       via  6a2843ac1260897fd7b4ae3c422b32fa83d37778 (commit)
      from  ef1326b8002fb0513ee5ff9c522b26ab6bf41587 (commit)


- Log -----------------------------------------------------------------
commit 6a2843ac1260897fd7b4ae3c422b32fa83d37778
Author: Julien Danjou &amp;lt;julien&amp;lt; at &amp;gt;danjou.info&amp;gt;
Date:   Thu May 16 17:51:47 2013 +0200

    gnus-notifications: use photo-file as app-icon
    
    Signed-off-by: Julien Danjou &amp;lt;julien&amp;lt; at &amp;gt;danjou.info&amp;gt;

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ca0a60d..24967e8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-16  Julien Danjou  &amp;lt;julien&amp;lt; at &amp;gt;danjou.info&amp;gt;
+
+* gnus-notifications.el (gnus-notifications-notify): Use photo-file as
+app-icon.
+
 2013-05-15  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
 
 * shr-color.el (shr-color-visible-luminance-min)
diff --git a/lisp/gnus-notifications.el b/lisp/gnus-notifications.el
index f29bdb7..93220ed 100644
--- a/lisp/gnus-notifications.el
+++ b/lisp/gnus-notifications.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -92,12 +92,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Return a notification id if any, or t on success."
        :body subject
        :actions '("read" "Read")
        :on-action 'gnus-notifications-action
-       :app-icon (gnus-funcall-no-warning
-  'image-search-load-path "gnus/gnus.png")
+       :app-icon (or photo-file
+                     (gnus-funcall-no-warning
+                      'image-search-load-path "gnus/gnus.png"))
        :app-name "Gnus"
        :category "email.arrived"
-       :timeout gnus-notifications-timeout
-       :image-path photo-file)
+       :timeout gnus-notifications-timeout)
     (message "New message from %s: %s" from subject)
     ;; Don't return an id
     t))

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog             |    5 +++++
 lisp/gnus-notifications.el |    8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Julien Danjou</dc:creator>
    <dc:date>2013-05-16T15:52:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12317">
    <title>[gnus git]  branch master updated: m0-7-12-gef1326b =1= shr-color.el (shr-color-visible-luminance-min, shr-color-visible-distance-min): Use shr-color group</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12317</link>
    <description>&lt;pre&gt;       via  ef1326b8002fb0513ee5ff9c522b26ab6bf41587 (commit)
      from  fb979a6cd71021111bacc9e4bacfce7637c07506 (commit)


- Log -----------------------------------------------------------------
commit ef1326b8002fb0513ee5ff9c522b26ab6bf41587
Author: Glenn Morris &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
Date:   Thu May 16 02:40:59 2013 +0000

    shr-color.el (shr-color-visible-luminance-min, shr-color-visible-distance-min): Use shr-color group

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9df871a..ca0a60d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-15  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
+
+* shr-color.el (shr-color-visible-luminance-min)
+(shr-color-visible-distance-min): Use shr-color group.
+
 2013-05-11  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
 
 * gnus-vm.el: Make it loadable without VM.
diff --git a/lisp/shr-color.el b/lisp/shr-color.el
index 0b320a2..21f1fc4 100644
--- a/lisp/shr-color.el
+++ b/lisp/shr-color.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -36,14 +36,14 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 (defcustom shr-color-visible-luminance-min 40
   "Minimum luminance distance between two colors to be considered visible.
 Must be between 0 and 100."
-  :group 'shr
+  :group 'shr-color
   :type 'number)
 
 (defcustom shr-color-visible-distance-min 5
   "Minimum color distance between two colors to be considered visible.
 This value is used to compare result for `ciede2000'.  It's an
 absolute value without any unit."
-  :group 'shr
+  :group 'shr-color
   :type 'integer)
 
 (defconst shr-color-html-colors-alist

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog    |    5 +++++
 lisp/shr-color.el |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-16T02:41:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12316">
    <title>[gnus git]  branch master updated: m0-7-11-gfb979a6 =1= gnus-vm.el: Make it loadable without VM</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12316</link>
    <description>&lt;pre&gt;       via  fb979a6cd71021111bacc9e4bacfce7637c07506 (commit)
      from  cae8ffc46d8446accf3c5d10ded0bc5c845da474 (commit)


- Log -----------------------------------------------------------------
commit fb979a6cd71021111bacc9e4bacfce7637c07506
Author: Glenn Morris &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
Date:   Sun May 12 11:46:03 2013 +0000

    gnus-vm.el: Make it loadable without VM

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4b3b8bb..9df871a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-11  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
+
+* gnus-vm.el: Make it loadable without VM.
+(gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
+(vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
+
 2013-05-09  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
 
 * mml1991.el: Make it loadable.  (Bug#13456)
diff --git a/lisp/gnus-vm.el b/lisp/gnus-vm.el
index fa39bae..55f9965 100644
--- a/lisp/gnus-vm.el
+++ b/lisp/gnus-vm.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -35,12 +35,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 (require 'gnus-msg)
 
 (eval-when-compile
-  (require 'cl)
-  (autoload 'vm-mode "vm")
-  (autoload 'vm-save-message "vm")
-  (autoload 'vm-forward-message "vm")
-  (autoload 'vm-reply "vm")
-  (autoload 'vm-mail "vm"))
+  (require 'cl))
+
+(autoload 'vm-mode "vm")
+(autoload 'vm-save-message "vm")
 
 (defvar gnus-vm-inhibit-window-system nil
   "Inhibit loading `win-vm' if using a window-system.
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -51,10 +49,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Has to be set before gnus-vm is loaded.")
     (when window-system
       (require 'win-vm))))
 
-(when (not (featurep 'vm))
-  (load "vm"))
-
 (defun gnus-vm-make-folder (&amp;amp;optional buffer)
+  (require 'vm)
   (let ((article (or buffer (current-buffer)))
 (tmp-folder (generate-new-buffer " *tmp-folder*"))
 (start (point-min))
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -87,6 +83,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; save those articles instead."
 
 (defun gnus-summary-save-in-vm (&amp;amp;optional folder)
   (interactive)
+  (require 'vm)
   (setq folder
 (gnus-read-save-file-name
  "Save %s in VM folder:" folder

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog  |    6 ++++++
 lisp/gnus-vm.el |   15 ++++++---------
 2 files changed, 12 insertions(+), 9 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-12T11:46:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12315">
    <title>[gnus git]  branch master updated: m0-7-10-gcae8ffc =1= Fix a bunch of custom types, and more</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12315</link>
    <description>&lt;pre&gt;       via  cae8ffc46d8446accf3c5d10ded0bc5c845da474 (commit)
      from  d8f3afde92c00250e3e8ab94cb7f70336f159525 (commit)


- Log -----------------------------------------------------------------
commit cae8ffc46d8446accf3c5d10ded0bc5c845da474
Author: Glenn Morris &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
Date:   Thu May 9 22:29:11 2013 +0000

    Fix a bunch of custom types, and more

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3c98f80..4b3b8bb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,26 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-09  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
+
+* mml1991.el: Make it loadable.  (Bug#13456)
+
+* gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
+* gnus-async.el (gnus-async-post-fetch-function):
+* gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
+* gnus-html.el (gnus-html-image-cache-ttl):
+* gnus-notifications.el (gnus-notifications-timeout):
+* gnus-picon.el (gnus-picon-properties):
+* gnus-util.el (gnus-completion-styles):
+* gnus.el (gnus-other-frame-resume-function):
+* message.el (message-user-organization-file)
+(message-cite-reply-position):
+* nnir.el (nnir-summary-line-format)
+(nnir-retrieve-headers-override-function):
+* shr-color.el (shr-color-visible-luminance-min):
+* shr.el (shr-blocked-images):
+* spam-report.el (spam-report-resend-to):
+* spam.el (spam-summary-exit-behavior): Fix custom types.
+
+* gnus-salt.el (gnus-selected-tree-face): Fix default.
+
 2013-05-07  Katsumi Yamaoka  &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
 
 * gnus-art.el (gnus-article-describe-bindings): Require help-mode
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 64598b1..d76d37a 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1033,15 +1033,15 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Some of these headers are updated automatically.  See
 `gnus-article-update-date-headers' for details."
   :version "24.1"
   :group 'gnus-article-headers
-  :type '(repeat
-  (item :tag "Universal time (UT)" :value 'ut)
-  (item :tag "Local time zone" :value 'local)
-  (item :tag "Readable English" :value 'english)
-  (item :tag "Elapsed time" :value 'lapsed)
-  (item :tag "Original and elapsed time" :value 'combined-lapsed)
-  (item :tag "Original date header" :value 'original)
-  (item :tag "ISO8601 format" :value 'iso8601)
-  (item :tag "User-defined" :value 'user-defined)))
+  :type '(set
+  (const :tag "Universal time (UT)" ut)
+  (const :tag "Local time zone" local)
+  (const :tag "Readable English" english)
+  (const :tag "Elapsed time" lapsed)
+  (const :tag "Original and elapsed time" combined-lapsed)
+  (const :tag "Original date header" original)
+  (const :tag "ISO8601 format" iso8601)
+  (const :tag "User-defined" user-defined)))
 
 (defcustom gnus-article-update-date-headers nil
   "A number that says how often to update the date header (in seconds).
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1652,7 +1652,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; called with the group name as the parameter, and should return a
 regexp."
   :version "24.1"
   :group 'gnus-art
-  :type 'regexp)
+  :type '(choice regexp function))
 
 ;;; Internal variables
 
diff --git a/lisp/gnus-async.el b/lisp/gnus-async.el
index c5d6433..d0afd1a 100644
--- a/lisp/gnus-async.el
+++ b/lisp/gnus-async.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -76,7 +76,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; The function will be called narrowed to the region of the article
 that was fetched."
   :version "24.1"
   :group 'gnus-asynchronous
-  :type 'function)
+  :type '(choice (const nil) function))
 
 ;;; Internal variables.
 
diff --git a/lisp/gnus-gravatar.el b/lisp/gnus-gravatar.el
index 8b9c49a..33bcb6b 100644
--- a/lisp/gnus-gravatar.el
+++ b/lisp/gnus-gravatar.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -35,13 +35,13 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 (defcustom gnus-gravatar-size nil
   "How big should gravatars be displayed.
 If nil, default to `gravatar-size'."
-  :type 'integer
+  :type '(choice (const nil) integer)
   :version "24.1"
   :group 'gnus-gravatar)
 
 (defcustom gnus-gravatar-properties '(:ascent center :relief 1)
   "List of image properties applied to Gravatar images."
-  :type 'list
+  :type 'sexp
   :version "24.1"
   :group 'gnus-gravatar)
 
diff --git a/lisp/gnus-html.el b/lisp/gnus-html.el
index bdf03a1..a5625df 100644
--- a/lisp/gnus-html.el
+++ b/lisp/gnus-html.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -45,7 +45,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
   "Time used to determine if we should use images from the cache."
   :version "24.1"
   :group 'gnus-art
-  :type 'integer)
+  ;; FIXME hardly the friendliest type.  The allowed value is actually
+  ;; any time value, but we are assuming no-one cares about USEC and
+  ;; PSEC here.  It would be better to eg make it a number of minutes.
+  :type '(list integer integer))
 
 (defcustom gnus-html-image-automatic-caching t
   "Whether automatically cache retrieve images."
diff --git a/lisp/gnus-notifications.el b/lisp/gnus-notifications.el
index 224b59b..f29bdb7 100644
--- a/lisp/gnus-notifications.el
+++ b/lisp/gnus-notifications.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -64,7 +64,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; not get notifications."
 
 (defcustom gnus-notifications-timeout nil
   "Timeout used for notifications sent via `notifications-notify'."
-  :type 'integer
+  :type '(choice (const :tag "Server default" nil)
+                 (integer :tag "Milliseconds"))
   :group 'gnus-notifications)
 
 (defvar gnus-notifications-sent nil
diff --git a/lisp/gnus-picon.el b/lisp/gnus-picon.el
index 4f28f8e..5402982 100644
--- a/lisp/gnus-picon.el
+++ b/lisp/gnus-picon.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -77,7 +77,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Some people may want to add \"unknown\" to this list."
 
 (defcustom gnus-picon-properties '(:color-symbols (("None" . "white")))
   "List of image properties applied to picons."
-  :type 'list
+  :type 'sexp
   :version "24.3"
   :group 'gnus-picon)
 
diff --git a/lisp/gnus-salt.el b/lisp/gnus-salt.el
index 48b51d2..6b8e105 100644
--- a/lisp/gnus-salt.el
+++ b/lisp/gnus-salt.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -385,7 +385,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; lines."
  integer)
   :group 'gnus-summary-tree)
 
-(defcustom gnus-selected-tree-face 'modeline
+(defcustom gnus-selected-tree-face 'mode-line
   "*Face used for highlighting selected articles in the thread tree."
   :type 'face
   :group 'gnus-summary-tree)
diff --git a/lisp/gnus-util.el b/lisp/gnus-util.el
index a121c27..6e2c586 100644
--- a/lisp/gnus-util.el
+++ b/lisp/gnus-util.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -68,7 +68,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
   "Value of `completion-styles' to use when completing."
   :version "24.1"
   :group 'gnus-meta
-  :type 'list)
+  :type '(repeat symbol))
 
 ;; Fixme: this should be a gnus variable, not nnmail-.
 (defvar nnmail-pathname-coding-system)
diff --git a/lisp/gnus.el b/lisp/gnus.el
index eb2531b..c79b1e0 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2507,6 +2507,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Disabling the agent may result in noticeable loss of performance."
   :version "24.4"
   :group 'gnus-start
   :type '(choice (function-item gnus)
+ (function-item gnus-group-get-new-news)
  (function-item gnus-no-server)
  (function-item gnus-slave)
  (function-item gnus-slave-no-server)))
diff --git a/lisp/message.el b/lisp/message.el
index d87879b..f867938 100644
--- a/lisp/message.el
+++ b/lisp/message.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -535,7 +535,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; If t, use `message-user-organization-file'."
 (setq orgfile f)))
     orgfile)
   "*Local news organization file."
-  :type 'file
+  :type '(choice (const nil) file)
   :link '(custom-manual "(message)News Headers")
   :group 'message-headers)
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1142,9 +1142,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; e.g. using `gnus-posting-styles':
 
   (eval (set (make-local-variable 'message-cite-reply-position) 'above))"
   :version "24.1"
-  :type '(choice (const :tag "Reply inline" 'traditional)
- (const :tag "Reply above" 'above)
- (const :tag "Reply below" 'below))
+  :type '(choice (const :tag "Reply inline" traditional)
+ (const :tag "Reply above" above)
+ (const :tag "Reply below" below))
   :group 'message-insertion)
 
 (defcustom message-cite-style nil
diff --git a/lisp/mml1991.el b/lisp/mml1991.el
index 5af7639..52b8e34 100644
--- a/lisp/mml1991.el
+++ b/lisp/mml1991.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -50,6 +50,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 (autoload 'message-options-get "message")
 (autoload 'message-options-set "message")
 
+(require 'mml2015)
+
 (defvar mml1991-use mml2015-use
   "The package used for PGP.")
 
diff --git a/lisp/mml2015.el b/lisp/mml2015.el
index 4d2647f..c3905b8 100644
--- a/lisp/mml2015.el
+++ b/lisp/mml2015.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -47,6 +47,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
                   (config &amp;amp;optional minimum-version))
 (declare-function epg-configuration "ext:epg-config" ())
 
+;; Maybe this should be in eg mml-sec.el (and have a different name).
+;; Then mml1991 would not need to require mml2015, and mml1991-use
+;; could be removed.
 (defvar mml2015-use (or
      (condition-case nil
  (progn
diff --git a/lisp/nnir.el b/lisp/nnir.el
index aba07cf..22dee30 100644
--- a/lisp/nnir.el
+++ b/lisp/nnir.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -326,7 +326,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; with three items unique to nnir summary buffers:
 
 If nil this will use `gnus-summary-line-format'."
   :version "24.1"
-  :type '(string)
+  :type '(choice (const :tag "gnus-summary-line-format" nil) string)
   :group 'nnir)
 
 (defcustom nnir-retrieve-headers-override-function nil
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -338,7 +338,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; retrieved header format.
 If this variable is nil, or if the provided function returns nil for a search
 result, `gnus-retrieve-headers' will be called instead."
   :version "24.1"
-  :type '(function)
+  :type '(choice (const :tag "gnus-retrieve-headers" nil) function)
   :group 'nnir)
 
 (defcustom nnir-imap-default-search-key "whole message"
diff --git a/lisp/shr-color.el b/lisp/shr-color.el
index 91b2cf7..0b320a2 100644
--- a/lisp/shr-color.el
+++ b/lisp/shr-color.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -37,7 +37,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
   "Minimum luminance distance between two colors to be considered visible.
 Must be between 0 and 100."
   :group 'shr
-  :type 'float)
+  :type 'number)
 
 (defcustom shr-color-visible-distance-min 5
   "Minimum color distance between two colors to be considered visible.
diff --git a/lisp/shr.el b/lisp/shr.el
index 293ba24..5c1b99e 100644
--- a/lisp/shr.el
+++ b/lisp/shr.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -52,7 +52,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; fit these criteria."
   "Images that have URLs matching this regexp will be blocked."
   :version "24.1"
   :group 'shr
-  :type 'regexp)
+  :type '(choice (const nil) regexp))
 
 (defcustom shr-table-horizontal-line ?\s
   "Character used to draw horizontal table lines."
diff --git a/lisp/spam-report.el b/lisp/spam-report.el
index 06aae29..24e1ca7 100644
--- a/lisp/spam-report.el
+++ b/lisp/spam-report.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -81,7 +81,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; The function must accept the arguments `host' and `report'."
   "Email address that spam articles are resent to when reporting.
 If not set, the user will be prompted to enter a value which will be
 saved for future use."
-  :type 'string
+  :type '(choice (const :tag "Prompt" nil) string)
   :group 'spam-report)
 
 (defvar spam-report-url-ping-temp-agent-function nil
diff --git a/lisp/spam.el b/lisp/spam.el
index 063ba28..725017c 100644
--- a/lisp/spam.el
+++ b/lisp/spam.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -94,14 +94,14 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Note that setting the `spam-use-move' or `spam-use-copy' backends on
 a group through group/topic parameters overrides this mechanism."
   :type '(choice
           (const
-           'default
-           :tag "Move spam out of all groups and ham out of spam groups.")
+           :tag "Move spam out of all groups and ham out of spam groups"
+           default)
           (const
-           'move-all
-           :tag "Move spam out of all groups and ham out of all groups.")
+           :tag "Move spam out of all groups and ham out of all groups"
+           move-all)
           (const
-           'move-none
-           :tag "Never move spam or ham out of any groups."))
+           :tag "Never move spam or ham out of any groups"
+           move-none))
   :group 'spam)
 
 (defcustom spam-directory (nnheader-concat gnus-directory "spam/")

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog             |   23 +++++++++++++++++++++++
 lisp/gnus-art.el           |   20 ++++++++++----------
 lisp/gnus-async.el         |    2 +-
 lisp/gnus-gravatar.el      |    4 ++--
 lisp/gnus-html.el          |    5 ++++-
 lisp/gnus-notifications.el |    3 ++-
 lisp/gnus-picon.el         |    2 +-
 lisp/gnus-salt.el          |    2 +-
 lisp/gnus-util.el          |    2 +-
 lisp/gnus.el               |    1 +
 lisp/message.el            |    8 ++++----
 lisp/mml1991.el            |    2 ++
 lisp/mml2015.el            |    3 +++
 lisp/nnir.el               |    4 ++--
 lisp/shr-color.el          |    2 +-
 lisp/shr.el                |    2 +-
 lisp/spam-report.el        |    2 +-
 lisp/spam.el               |   12 ++++++------
 18 files changed, 66 insertions(+), 33 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-09T22:29:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12314">
    <title>[gnus git]  branch master updated: m0-7-9-gd8f3afd =1= gnus-art.el (gnus-article-describe-bindings): Add a comment</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12314</link>
    <description>&lt;pre&gt;       via  d8f3afde92c00250e3e8ab94cb7f70336f159525 (commit)
      from  95184d21f8d1bfbaddb5798912b4bfe95f08e9ed (commit)


- Log -----------------------------------------------------------------
commit d8f3afde92c00250e3e8ab94cb7f70336f159525
Author: Katsumi Yamaoka &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
Date:   Tue May 7 11:43:26 2013 +0000

    gnus-art.el (gnus-article-describe-bindings): Add a comment

diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 9f12e45..64598b1 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -6681,6 +6681,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; then we display only bindings that start with that prefix."
     (with-current-buffer ,(current-buffer)
       (gnus-article-describe-bindings prefix)))
   ,prefix)))
+      ;; Loading `help-mode' here is necessary if `describe-bindings'
+      ;; is replaced with something, e.g. `helm-descbinds'.
       (require 'help-mode)
       (with-current-buffer (let (help-xref-following) (help-buffer))
 (setq help-xref-stack-item item)))))

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/gnus-art.el |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-07T11:43:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12313">
    <title>[gnus git]  branch master updated: m0-7-8-g95184d2 =1= lisp/ChangeLog: Revert last bogus change</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12313</link>
    <description>&lt;pre&gt;       via  95184d21f8d1bfbaddb5798912b4bfe95f08e9ed (commit)
      from  5e449e1ad549cca6bbb98e71fb96028fb05264cb (commit)


- Log -----------------------------------------------------------------
commit 95184d21f8d1bfbaddb5798912b4bfe95f08e9ed
Author: Katsumi Yamaoka &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
Date:   Tue May 7 10:24:37 2013 +0000

    lisp/ChangeLog: Revert last bogus change

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e323e39..3c98f80 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,7 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 2013-05-07  Katsumi Yamaoka  &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
 
 * gnus-art.el (gnus-article-describe-bindings): Require help-mode
-because of let-binding help-xref-following.
+because of let-binding help-xref-following.  (Bug#14356)
 
 2013-05-06  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
 

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-07T10:24:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12312">
    <title>[gnus git]  branch master updated: m0-7-7-g5e449e1 =1= lisp/ChangeLog: Remove `(Bug#14356)' in the 2013-05-07 entry</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12312</link>
    <description>&lt;pre&gt;       via  5e449e1ad549cca6bbb98e71fb96028fb05264cb (commit)
      from  c3ec5d2cb2fdd3b9dd553faac44a1a11ca606ef7 (commit)


- Log -----------------------------------------------------------------
commit 5e449e1ad549cca6bbb98e71fb96028fb05264cb
Author: Katsumi Yamaoka &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
Date:   Tue May 7 10:21:08 2013 +0000

    lisp/ChangeLog: Remove `(Bug#14356)' in the 2013-05-07 entry

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3c98f80..e323e39 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,7 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 2013-05-07  Katsumi Yamaoka  &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
 
 * gnus-art.el (gnus-article-describe-bindings): Require help-mode
-because of let-binding help-xref-following.  (Bug#14356)
+because of let-binding help-xref-following.
 
 2013-05-06  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
 

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-07T10:21:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12311">
    <title>[gnus git]  branch master updated: m0-7-6-gc3ec5d2 =1= gnus-art.el (gnus-article-describe-bindings): Require help-mode because of let-binding help-xref-following (Bug#14356)</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12311</link>
    <description>&lt;pre&gt;       via  c3ec5d2cb2fdd3b9dd553faac44a1a11ca606ef7 (commit)
      from  312cebee32821271351472a631475f4bb0a53fa2 (commit)


- Log -----------------------------------------------------------------
commit c3ec5d2cb2fdd3b9dd553faac44a1a11ca606ef7
Author: Katsumi Yamaoka &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
Date:   Tue May 7 00:28:13 2013 +0000

    gnus-art.el (gnus-article-describe-bindings): Require help-mode because of let-binding help-xref-following (Bug#14356)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e73237c..3c98f80 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-07  Katsumi Yamaoka  &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
+
+* gnus-art.el (gnus-article-describe-bindings): Require help-mode
+because of let-binding help-xref-following.  (Bug#14356)
+
 2013-05-06  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
 
 * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index b5fbff2..9f12e45 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -6630,11 +6630,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; KEY is a string or a vector."
 ;;`gnus-agent-mode' in gnus-agent.el will define it.
 (defvar gnus-agent-summary-mode)
 (defvar gnus-draft-mode)
-;; Calling help-buffer will autoload help-mode.
 (defvar help-xref-stack-item)
-;; Emacs 22 doesn't load it in the batch mode.
-(eval-when-compile
-  (autoload 'help-buffer "help-mode"))
 
 (defun gnus-article-describe-bindings (&amp;amp;optional prefix)
   "Show a list of all defined keys, and their definitions.
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -6685,6 +6681,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; then we display only bindings that start with that prefix."
     (with-current-buffer ,(current-buffer)
       (gnus-article-describe-bindings prefix)))
   ,prefix)))
+      (require 'help-mode)
       (with-current-buffer (let (help-xref-following) (help-buffer))
 (setq help-xref-stack-item item)))))
 

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog   |    5 +++++
 lisp/gnus-art.el |    5 +----
 2 files changed, 6 insertions(+), 4 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-07T00:28:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12310">
    <title>[gnus git]  branch master updated: m0-7-5-g312cebe =1= Revert "message.el (message-bury): Make `buffer' optional;"</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12310</link>
    <description>&lt;pre&gt;       via  312cebee32821271351472a631475f4bb0a53fa2 (commit)
      from  e1f824dab887260a93d016ee5ac66d7607529f81 (commit)


- Log -----------------------------------------------------------------
commit 312cebee32821271351472a631475f4bb0a53fa2
Author: Tassilo Horn &amp;lt;tsdh&amp;lt; at &amp;gt;gnu.org&amp;gt;
Date:   Mon May 6 14:54:14 2013 +0200

    Revert "message.el (message-bury): Make `buffer' optional;"
    
    This reverts commit 1d2c4fbb9bdc1078d1727b27139e4df5ba7cb2cb.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5f9d5fe..e73237c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2,12 +2,6 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 
 * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
 
-2013-05-04  Thierry Volpiatto  &amp;lt;thierry.volpiatto&amp;lt; at &amp;gt;gmail.com&amp;gt;
-
-* message.el (message-bury): Make `buffer' optional.
-(message-send-and-exit): Don't pass `buf' so as to hide the buffer
-(bug#14085).
-
 2013-05-04  Andrew Cohen  &amp;lt;cohen&amp;lt; at &amp;gt;bu.edu&amp;gt;
 
 * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
diff --git a/lisp/message.el b/lisp/message.el
index fbc7868..d87879b 100644
--- a/lisp/message.el
+++ b/lisp/message.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -4091,7 +4091,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; It should typically alter the sending method in some way or other."
 (actions message-exit-actions))
     (when (and (message-send arg)
        (buffer-name buf))
-      (message-bury)
+      (message-bury buf)
       (if message-kill-buffer-on-exit
   (kill-buffer buf))
       (message-do-actions actions)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -4139,7 +4139,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Instead, just auto-save the buffer and then bury it."
   (message-disassociate-draft)))
       (message-do-actions actions))))
 
-(defun message-bury (&amp;amp;optional buffer)
+(defun message-bury (buffer)
   "Bury this mail BUFFER."
   (if message-return-action
       (progn

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog  |    6 ------
 lisp/message.el |    4 ++--
 2 files changed, 2 insertions(+), 8 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Tassilo Horn</dc:creator>
    <dc:date>2013-05-06T12:54:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12309">
    <title>[gnus git]  branch master updated: m0-7-4-ge1f824d =1= mml2015.el (mml2015-epg-sign): Add name="signature.asc" (Bug#13465)</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12309</link>
    <description>&lt;pre&gt;       via  e1f824dab887260a93d016ee5ac66d7607529f81 (commit)
      from  1d2c4fbb9bdc1078d1727b27139e4df5ba7cb2cb (commit)


- Log -----------------------------------------------------------------
commit e1f824dab887260a93d016ee5ac66d7607529f81
Author: Glenn Morris &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
Date:   Mon May 6 10:46:16 2013 +0000

    mml2015.el (mml2015-epg-sign): Add name="signature.asc" (Bug#13465)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bf55e5a..5f9d5fe 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-06  Glenn Morris  &amp;lt;rgm&amp;lt; at &amp;gt;gnu.org&amp;gt;
+
+* mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
+
 2013-05-04  Thierry Volpiatto  &amp;lt;thierry.volpiatto&amp;lt; at &amp;gt;gmail.com&amp;gt;
 
 * message.el (message-bury): Make `buffer' optional.
diff --git a/lisp/mml2015.el b/lisp/mml2015.el
index 39bce23..4d2647f 100644
--- a/lisp/mml2015.el
+++ b/lisp/mml2015.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1106,7 +1106,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; If no one is selected, default secret key is used.  "
     (insert (format "\n--%s\n" boundary))
     (goto-char (point-max))
     (insert (format "\n--%s\n" boundary))
-    (insert "Content-Type: application/pgp-signature\n\n")
+    (insert "Content-Type: application/pgp-signature; name=\"signature.asc\"\n\n")
     (insert signature)
     (goto-char (point-max))
     (insert (format "--%s--\n" boundary))

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog  |    4 ++++
 lisp/mml2015.el |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-06T10:46:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12308">
    <title>[gnus git]  branch master updated: m0-7-3-g1d2c4fb =1= message.el (message-bury): Make `buffer' optional;  (message-send-and-exit): Don't pass `buf' so as to hide the buffer  (bug#14085)</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12308</link>
    <description>&lt;pre&gt;       via  1d2c4fbb9bdc1078d1727b27139e4df5ba7cb2cb (commit)
      from  0fceb665e268e9749e51e72f453b785b1a1ee596 (commit)


- Log -----------------------------------------------------------------
commit 1d2c4fbb9bdc1078d1727b27139e4df5ba7cb2cb
Author: Thierry Volpiatto &amp;lt;thierry.volpiatto&amp;lt; at &amp;gt;gmail.com&amp;gt;
Date:   Sat May 4 22:42:46 2013 +0000

    message.el (message-bury): Make `buffer' optional;
     (message-send-and-exit): Don't pass `buf' so as to hide the buffer
     (bug#14085)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2ce4cb6..bf55e5a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-04  Thierry Volpiatto  &amp;lt;thierry.volpiatto&amp;lt; at &amp;gt;gmail.com&amp;gt;
+
+* message.el (message-bury): Make `buffer' optional.
+(message-send-and-exit): Don't pass `buf' so as to hide the buffer
+(bug#14085).
+
 2013-05-04  Andrew Cohen  &amp;lt;cohen&amp;lt; at &amp;gt;bu.edu&amp;gt;
 
 * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
diff --git a/lisp/message.el b/lisp/message.el
index d87879b..fbc7868 100644
--- a/lisp/message.el
+++ b/lisp/message.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -4091,7 +4091,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; It should typically alter the sending method in some way or other."
 (actions message-exit-actions))
     (when (and (message-send arg)
        (buffer-name buf))
-      (message-bury buf)
+      (message-bury)
       (if message-kill-buffer-on-exit
   (kill-buffer buf))
       (message-do-actions actions)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -4139,7 +4139,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Instead, just auto-save the buffer and then bury it."
   (message-disassociate-draft)))
       (message-do-actions actions))))
 
-(defun message-bury (buffer)
+(defun message-bury (&amp;amp;optional buffer)
   "Bury this mail BUFFER."
   (if message-return-action
       (progn

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog  |    6 ++++++
 lisp/message.el |    4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2013-05-04T22:43:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12307">
    <title>[gnus git]  branch master updated: m0-7-2-g0fceb66 =1= gnus-sum.el (gnus-read-header): Prefix group when entering into registry.</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12307</link>
    <description>&lt;pre&gt;       via  0fceb665e268e9749e51e72f453b785b1a1ee596 (commit)
      from  875b96cd67e17350cbd2bf1f1e2beb099ed2f3be (commit)


- Log -----------------------------------------------------------------
commit 0fceb665e268e9749e51e72f453b785b1a1ee596
Author: Andrew Cohen &amp;lt;cohen&amp;lt; at &amp;gt;andy.bu.edu&amp;gt;
Date:   Sat May 4 14:20:59 2013 -0400

    gnus-sum.el (gnus-read-header): Prefix group when entering into registry.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e745774..2ce4cb6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-04  Andrew Cohen  &amp;lt;cohen&amp;lt; at &amp;gt;bu.edu&amp;gt;
+
+* gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
+entering into the registry.
+
 2013-05-01  Lars Magne Ingebrigtsen  &amp;lt;lars&amp;lt; at &amp;gt;ingebrigtsen.no&amp;gt;
 
 * gnus.el: Ma Gnus v0.7 is released.
diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el
index 84d4b29..aaed1d1 100644
--- a/lisp/gnus-sum.el
+++ b/lisp/gnus-sum.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -12426,7 +12426,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; If REVERSE, save parts that do not match TYPE."
                        (not (gnus-ephemeral-group-p (car where))))
               (gnus-registry-handle-action
                (mail-header-id header) nil
-               (gnus-group-prefixed-name (car where) gnus-override-method)
+               (gnus-group-prefixed-name
+(car where)
+(or gnus-override-method (gnus-find-method-for-group group)))
                (mail-header-subject header)
                (mail-header-from header)))
     (when (and (stringp id)

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog   |    5 +++++
 lisp/gnus-sum.el |    4 +++-
 2 files changed, 8 insertions(+), 1 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Andrew Cohen</dc:creator>
    <dc:date>2013-05-04T18:22:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12306">
    <title>[gnus git]  annotated tag m0-7 created: m0-7 =0=</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12306</link>
    <description>&lt;pre&gt;        at  4a7bb30c7339dab231d4d11d459ea47d778f01ff (tag)
   tagging  d1dcfa1a2d0361a9ea3563065e653c3e2c9dbfe1 (commit)
  replaces  m0-5
 tagged by  Lars Magne Ingebrigtsen
        on  Wed May 1 22:11:07 2013 +0200

- Log -----------------------------------------------------------------
Ma Gnus v0.7 is released

Aaron S. Hawley (1):
      gnus-start.el, gnus-sum.el: Fix ambiguous doc string cross-references

Adam SjÃ¸gren (4):
      Extract image from PGP key using the recommended --attribute-fd option.
      * mml2015.el (mml2015-epg-key-image): protect call to
      Fix XEmacs 21.5 compilation failure. Really.
      * mml2015-el (mml2015-epg-key-image): wrap epg-gpg-program in shell-quote-argument.

Akinori MUSHA (1):
      sieve-mode.el (sieve-font-lock-keywords): Keywords should be word delimited (Bug#13173)

Andreas Schwab (8):
      gnus.el (debbugs-gnu): Don't override existing autoload definition
      shr.el (shr-expand-url): Handle URL starting with `//'
      Merge changes made in Emacs trunk
      tls.el (tls-program): Update customize type
      * shr.el (shr-tag-em): Render em as italic, not bold.
      Handle gpg errors better when trying to display PGP key image.
      lisp/ChangeLog (2012-12-27): Fix it
      auth.texi (VERSION): Set before first use

Andrew Cohen (17):
      nnir: Add 'virtual ability to nnir backend.
      nnir.el: Major rewrite. Separate searching from group management.
      Add Changelog for last commit
      nnir.el: Fix byte-compile warning.
      gnus-msg.el (gnus-setup-message): Set the posting-style and gcc
      nnir.el: Allow nnir group creation based on an existing query.
      nnir.el: Fix typo in default search engine.
      nnir.el: Fix typo in default-engine custom list.
      gnus-msg.el: Add nnir-article-* autoloads.
      gnus-msg.el: Fix detection of nnir group.
      nnir.el (gnus-nnir-group-p): Fix to work with unprefixed groups.
      nnir.el: Improve marks handling.
      nnir.el: Small optimizations. Use 'gnus-group-guess-full-name-from-command-method
      nnir.el (nnir-request-set-mark): Make sure we are in the right group.
      * gnus-sum.el (gnus-summary-insert-articles): Force dependencies
      * nnir.el (nnir-close-group): Make sure we are in the right group.
      * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for

Chong Yidong (4):
      smime.el (smime-certificate-info): Set buffer-read-only directly, instead of calling toggle-read-only with a (bogus) argument
      gnus-art.el (article-display-face): Handle failure in gnus-create-image (Bug#11802)
      Partially revert last Gnus merge
      password-cache.el (password-read-and-add): Use a declare form to mark this function obsolete

Christopher Schmidt (3):
      mm-decode.el (mm-save-part): Handle invalid read-file-name results
      mml.el (mml-insert-part): Insert closing tag
      gnus-int.el (gnus-backend-trace): Honour gnus-backend-trace

Daiki Ueno (4):
      mm-decode: don't touch MIME type for multipart/encrypted children
      mml-smime.el: Support signing by sender
      mml-smime.el (epg-sub-key-fingerprint): Autoload for mml-smime-epg-find-usable-secret-key
      mml2015.el (mml2015-epg-find-usable-key): handle revoked user-id

Dave Abrahams (9):
      (gnus-warp-to-article): Limit registry warping to real groups.
      Filter out negative article numbers during expiry
      Change gnus-set-difference from O(N^2) to O(N)
      gnus-request-head: when gnus-override-method is set, allow the backend
      gnus-try-warping-via-registry: [bugfix] don't act as though you've found the article when you haven't
      Fix for macos keychain access
      Revert "Add recent argument to nnimap-find-article-by-message-id"
      Document result value of nnimap-change-group
      Account for the fact that nnimap-change-group can return t

David Edmondson (1):
      shr.el: Support &amp;lt;img src="data:..."&amp;gt;

David Engster (3):
      * gnus-registry.el (gnus-registry-save): Provide class name when
      Silence byte compiler.
      * gnus-registry.el: Silence XEmacs byte compiler.

Dmitry Antipov (1):
      gnus-art.el, gnus-async.el: Use point-min-marker and point-max-marker

Emacs developers (2):
      Merge changes made in Emacs trunk
      Merge changes made in Gnus trunk

Eric Abrahamsen (1):
      gnus-namazu.el: Fix typo: (require 'gmm-util) -&amp;gt; (require 'gmm-utils)

Gabor Vida (1):
      auth-source.el (auth-source-format-prompt): Don't get confused by any "\\" in replacement text (Bug#13637)

Glenn Morris (17):
      gnus.el, nnspool.el: Move some news variables from Emacs' paths.el
      Replace version 24.2 with 24.3 where appropriate (hopefully)
      color.el: Doc fixes
      Add missing :version tags
      lisp/ChangeLog (2012-11-02): Fix attribution
      GNUS-NEWS: Mention gnus-notifications
      gnus-diary.el (nndiary-request-create-group-functions, nndiary-request-update-info-functions, gnus-subscribe-newsgroup-functions, nndiary-request-accept-article-functions): Use new names for hooks rather than obsolete aliases
      auth.texi, epa.texi, gnus-coding.texi, sasl.texi: May as well just include doclicense.texi in everything.
      plstore.el (plstore-passphrase-callback-function): Use plstore-get-file
      auth.texi (Help for users): Break long lines
      mml-smime.el (mml-smime-sign-with-sender): Add :version
      smiley.el (smiley-style): Make the file loadable in batch mode
      lisp/ChangeLog (2012-02-19, 2012-01-27): Author fix
      Generalize "animated" images to "multi-frame" images
      shr.el (shr-put-image): Use image-multi-frame-p if available
      message.el (message-bury): Revert 2013-03-18 change (Bug#14117)
      gnus.el (gnus-list-debbugs): Use require rather than autoload (Bug#14262)

Jan Tatarik (3):
      Allow scoring on decoded (base64, etc) bodies.
      * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local function.
      Don't score by headers when scoring by body

John Wiegley (2):
      * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
      Allow "password" as netrc passwords

Juanma Barranquero (1):
      Fix typos in ChangeLogs

Julian Scheid (1):
      color.el (color-hsl-to-rgb): Fix incorrect results for small and large hue values (Bug#12559)

Julien Danjou (33):
      nnimap: use nimap-possibly-change-group in nnimap-find-article-by-message-id
      Remove useless argument
      nnimap: possibly-change-group get a read-only argument
      Rename nnimap-possibly-change-group
      Make server optionnal, as intented
      Add recent argument to nnimap-find-article-by-message-id
      nnimap: fix window-point-insertion-type for XEmacs
      nnir: fix nnimap usage
      nnimap: use nnimap-request-articles-find-limit in nnimap-request-articles-find-limit
      sieve: close buffers by default
      message: replace deprecated rmail vars
      Remove dead code
      Restore `gnus-kill-sticky-article-buffers'
      message: defalias mail-dont-reply-to if needed
      Fix my address e-mail
      demon: add autoload
      gnus-int: add to-buffer parameter to gnus-request-head
      int, nnimap: remove to-buffer in request-head
      demon: remove autoloads
      nnimap: restore to-buffer for now
      gnus-notifications: add
      gnus-notifications: add indirections
      gnus-notifications: add defcustom for timeout
      gnus-notifications: add actions support
      Add recent argument to nnimap-find-article-by-message-id
      nnimap: revert synchronous listing of nnimap
      nnimap: restore nnimap-get-responses
      gnus-srvr: remove message call on failure
      notifications: add nil checks
      art: fix void-function on timer
      color: fix color-rgb-to-hsv computing
      gnus-sum: fix `gnus-summary-from-or-to-or-newsgroups' address comparison
      sieve-manage: update sieve port number

Juri Linkov (2):
      (gnus-read-ephemeral-bug-group): Allow opening more than one group at a time
      Change ephemeral Gnus group names to be prettier

Katsumi Yamaoka (77):
      auth.texi (Help for users): Fix typos
      gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is a string so that Gcc works (bug#11514)
      nnspool.el (news-path): Use eval-and-compile
      gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is a string so that Gcc works (bug#11514)
      lisp/ChangeLog: Add missing entries
      lisp/ChangeLog: Remove duplicate entries
      mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses
      tests/gnustest-{nntp,registry}.el: Set no-byte-compile and no-update-autoloads
      Replace FSF's street address with url in license headers
      gnus-art.el (gnus-article-view-part): Toggle subparts of multipart/alternative part
      mm-decode.el (mm-shr): Allow overriding charset by mm-charset-override-alist
      message.el: Make header fill function work properly
      Merge branch 'master' of https://git.gnus.org/gnus
      gnus.el (gnus-valid-select-methods): Fix custom type
      Typo
      nnimap.el (nnimap-request-articles-find-limit): Replace version 24.2 with 24.3
      gnus-msg.el (gnus-summary-resend-message): Honor posting-style for `name' and `address' in Resent-From header
      Enable posting-style group parameter to hold non-ASCII string values
      gnus-sum.el (gnus-summary-enter-digest-group): Work for encoding and charset
      Add change log entries for Dave Abrahams' 2012-08-29 changes
      XEmacs 21.5 compilation fix
      gnus-art.el (gnus-article-stop-animations): Fix glitches caused by addition of psec to timers
      lpath.el: Bind mail-encode-mml for old Emacsen
      gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again a user about whether to delete files if once a user answered as n
      gnus-art.el (gnus-article-browse-delete-temp-files): Fix previous commit
      New UIDL implementation
      pop3.el: Comment fix
      XEmacs 21.5 compilation fix
      dgnushack.el (define-obsolete-variable-alias): Fix last commit
      dgnushack.el (define-obsolete-variable-alias): Fix temp var names
      dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4 and SXEmacs
      Fix last change
      gnus-art.el (gnus-article-browse-html-parts): Always replace charset in meta tag with the one the part specifies in its header
      dgnushack.el (define-obsolete-variable-alias): Simplify
      message.el (message-get-reply-headers): Make sure the reply goes to the author if it is a wide reply
      message.el (message-get-reply-headers): Fix typo in comment
      texi/ChangeLog (2012-11-24): Fix last change
      gnus-sync.el (gnus-sync-newsrc-offsets): Add :version
      gmm-utils.el (gmm-flet, gmm-labels): New macros.
      gmm-utils.el (gmm-labels): Use cl-labels if available
      gmm-utils.el (gmm-labels): Dox fix
      gmm-utils.el (gmm-flet): Remove.
      gmm-utils.el (gmm-labels): Doc fix
      gmm-util.el: Re-introduce gmm-flet using cl-letf
      gmm-utils.el (gmm-called-interactively-p): New function.
      gmm-utils.el (gmm-called-interactively-p): Revert.  This seems to causes Emacs to get stuck!
      lisp/ChangeLog: Fix typo
      gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
      spam.el: Fix last change
      gnus-art.el (gnus-article-browse-html-parts): Use &amp;lt;div align="left"&amp;gt; instead of &amp;lt;pre&amp;gt; to align message header
      gnus-start.el (gnus-before-resume-hook): Add :version
      Fix cpnflict
      mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
      lisp/ChangeLog: Add missing entry
      Merge branch 'master' of https://git.gnus.org/gnus
      lisp/ChangeLog (2012-05-27): Remove a dup entry
      lisp/ChangeLog (2012-04-12, 2012-04-21): Remove dupes
      gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)] for XEmacs
      nndir.el (nndir-request-list): Remove 2nd argument passed to nnml-request-list (Bug#13873)
      gnus-faq.texi (FAQ 3-11): Now Gnus supports POP3 UIDL
      lisp/ChangeLog.1: Use UTF-8 for file coding
      nndraft.el (nndraft-request-expire-articles): Make expiry target always `delete'
      mml.el (mml-minibuffer-read-description): Use `default' insted of `initial-input' for the argument name
      gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles corresponding to any existing group (Bug#14166)
      gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles corresponding to any existing group (Bug#14166)
      lisp/ChangeLog: Fix last change
      Merge branch 'master' of https://git.gnus.org/gnus
      Merge branch 'master' of https://git.gnus.org/gnus
      Merge branch 'master' of https://git.gnus.org/gnus
      mail-source.el (mail-source-fetch-pop, mail-source-check-pop): Don't set the MAILHOST environment variable permanently (Bug#14271)
      mail-source.el (mail-source-fetch-pop, mail-source-check-pop): Fix last change
      Merge branch 'master' of https://git.gnus.org/gnus
      mail-source.el (mail-source-fetch-pop, mail-source-check-pop): Fix again
      lpath.el: Fbind debbugs-gnu
      lpath.el: Don't fbind debbugs-gnu for GNU Emacs (declare-function is available in Emacs &amp;gt;= 22.2)
      gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs
      lisp/ChangeLog: Add Bug#

Kazuhiro Ito (1):
      starttls.el (starttls-extra-arguments): Doc fix

Kenichi Handa (2):
      qp.el (quoted-printable-decode-region): Decode multiple bytes at once
      qp.el (quoted-printable-decode-region): Fix previous change; handle lowercase a..f

Kevin Layer (1):
      * mml.el (mml-minibuffer-read-description): Allow passing in a prefix

Lars Ingebrigtsen (35):
      Silence XEmacs compilation warnings.
      * dgnushack.el: XEmacs 21.5 compilation fix.
      Indent.
      Indent.
      Indent.
      Make the `C-c C-n' command in Message more sturdy
      (gnus-group-mark-article-read): Propagate the read mark to the backend
      Use combining faces for highlighting.
      * gnus-util.el: Fix compilation error on XEmacs 21.4.
      Refactor the backend tracing code.
      (gnus-finish-retrieve-group-infos): Add backend tracing.
      (gnus-backend-trace): Also not the elapsed seconds.
      Doc typo fix.
      Merge branch 'master' of https://git.gnus.org/gnus
      Indent.
      Fix up the selection of debbugs groups
      Fix point movement when hiding threads
      Add new command gnus-browse-delete-group
      Remove X-Message-SMTP-Method from news, too.
      (gnus-browse-delete-group): Fix syntax error.
      Fix moving unticked messages between IMAP groups
      Allow specifying the login method for nnimap
      Allow setting `message-cite-style' via customize
      Don't bug out when fetching data from offline methods
      Allow killing off the *Tree* buffer
      Fix rendering of href-less &amp;lt;A&amp;gt; elements in shr
      Keep track of the equivalent summary buffer for each article buffer
      Further multiple article buffer fixes
      Make `gnus-article-hide-citation-maybe' leave buttons to mark hidden text
      Make summary movement with hidden threads more predictable
      Allow treatment functions to run on html bits by default
      Make set-buffer-multibyte a noop in XEmacs 21.5.
      Merge branch 'master' of https://git.gnus.org/gnus
      Posting style/resend-message fix-up
      Fix nntp connection problems with the Typhoon server

Lars Magne Ingebrigtsen (22):
      Ma Gnus v0.6 is begun
      Make `gnus-msg-mail' warn about Gnus not running
      (gnus-update-format-specifications): Remove outdated grouplens stuff.
      Remove byte-compilation of Gnus format specs.
      * shr.el: Add a iso-8859-1 cookie to make stuff work under other locales.
      Merge remote branch 'origin/no-gnus'
      * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.
      Merge remote branch 'origin/no-gnus'
      (gnus-summary-limit-to-author): Use the current From address as the default.
      (gnus-summary-insert-old-articles): Don't include unexistent messages.
      (mm-display-part): Dissect archives when hitting `RET' on a handle.
      Use `gnus-group-use-permanent-levels' in `g' in Gnus
      `gnus-tmp-' manual expansion
      Add epa
      POP before SMTP documentation cleanup
      (gnus-article-read-summary-keys): Protect against the key being bound to a lambda form.
      (shr-insert): \r is also not inserted, so don't try to delete it.
      Allow regenerating recursive nnfolder names
      Make nnimap treat \Deleted articles as \Read articles
      Don't do Gcc handling if Gnus isn't running
      Debbugs group entry fixups
      Ma Gnus v0.7 is released

Leo Liu (1):
      plstore-passphrase-callback-function fixup

Magnus Henoch (2):
      * nnmaildir.el: Make nnmaildir understand and write maildir flags.
      * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.

Martin Stjernholm (2):
      (gnus-demon-init): Fixed regression when IDLE is t and TIME is set.
      Fix nnimap charset issues when doing internal moves

Michael Welsh Duggan (1):
      Set window-point-insertion-type to t in imap log.

Nelson Ferreira (1):
      gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p

Paul Eggert (20):
      nnweb.el (nnweb-google-parse-1): Fix minor Y10k bug
      gnus-win.el (gnus-configure-frame): Spelling fix
      time-date.el: Support higher-resolution time stamps (Bug#9000)
      Don't use the abbreviation "win" to refer to Windows (Bug#10421)
      Better seed support for (random)
      emacs-mime.texi (time-date): Update manual for new time stamp format (Bug#12706)
      pop3.el: Spelling fix
      time-date.el: Commentary fix
      doclicense.texi: Update to latest version from FSF
      Fix minor whitespace issues after "." in manual
      doclicense.texi: Update to latest version from FSF.
      Hyphen and dash fixes in texinfo files
      Update copyright notices for 2013
      gnus-faq.texi, gnus.texi: Port documentation to Texinfo 5.0
      emacs-mime.texi: Switch from Latin-1 to UTF-8
      Prefer UTF-8 when the encoding shouldn't matter and changes are small
      Specify utf-8, not iso-8859-1, for ASCII files
      lisp/ChangeLog.2: Use UTF-8 for file coding
      emacs-mime.texi (Interface Functions): Use 'Ã¯' rather than '&amp;lt; at &amp;gt;"{&amp;lt; at &amp;gt;dotless{i}}'
      gnus-msg.el: Spelling fix

Richard Stallman (2):
      message-in-body-p should not alter anything;
      message.el (message-forward-make-body-mime): New args BEG, END

Sam Steingold (4):
      * lisp/gnus/gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
      gnus-start.el (gnus-before-resume-hook): Add.
      gnus.el (gnus-other-frame-resume-function): Add user option.
      message.el (message-bury): Minor cleanup

Stefan Monnier (12):
      nnimap.el (nnimap-open-connection-1): Don't leave an "opening..." message once it\s actually open
      gnus-win.el (gnus-configure-frame): Don't signal an error when jumping to
      legacy-gnus-agent.el (gnus-agent-unhook-expire-days), gnus-demon.el (gnus-demon-init): Don't bother with type-of
      nntp.el: Stop the `letf' madness.
      shr.el (shr-render-buffer): New command.
      parse-time.el (parse-time-tokenize): Comment fix
      gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups): Use defsetf
      gnus-notifications.el (gnus-notifications-action): Avoid CL-ism
      qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction
      Cleanup uses of "-hooks"
      Merge changes made in Emacs trunk
      nnimap.el (nnimap-keepalive): Don't throw an error if there's no more imap process running

Stephen Eglen (1):
      Make `message-buffers' return all derived buffers

TSUCHIYA Masatoshi (1):
      * gnus-namazu.el (gnus-namazu/make-directory-table): Bind

Tassilo Horn (2):
      * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
      * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer

Ted Phelps (1):
      * shr.el: Make all the overlays set the `evaporate' property so that

Ted Zlatanov (6):
      Support Mac OS X Keychains in auth-source.el.
      auth-source.el: (auth-sources): Fix syntax error.
      auth-source.el (auth-source-macos-keychain-result-append): Fix variable name.
      * auth-source.el (auth-sources, auth-source-macos-keychain-result-append): More fixes.
      auth-source: ignore :require and :type in secrets and plstore search spec
      * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save): Set epa-file-encrypt-to from variable to avoid querying.

Toke HÃ¸iland-JÃ¸rgensen (1):
      nnmaildir expiry fix-up

Uwe Brauer (1):
      Add mml-smime-encrypt-to-self.

Wolfgang Jenkner (5):
      Fix "groups" Agent format
      Make picon display customizable
      Make `A T' work when agentized
      Combine formatting faces with other highlighting
      Avoid `Invalid face reference: nil' messages.

-----------------------------------------------------------------------

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The annotated tag, m0-7 has been created


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Lars Magne Ingebrigtsen</dc:creator>
    <dc:date>2013-05-01T20:11:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12305">
    <title>[gnus git]  branch master updated: m0-7-1-g875b96c =1= Ma Gnus v0.8 is begun</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12305</link>
    <description>&lt;pre&gt;       via  875b96cd67e17350cbd2bf1f1e2beb099ed2f3be (commit)
      from  d1dcfa1a2d0361a9ea3563065e653c3e2c9dbfe1 (commit)


- Log -----------------------------------------------------------------
commit 875b96cd67e17350cbd2bf1f1e2beb099ed2f3be
Author: Lars Magne Ingebrigtsen &amp;lt;larsi&amp;lt; at &amp;gt;gnus.org&amp;gt;
Date:   Wed May 1 22:11:17 2013 +0200

    Ma Gnus v0.8 is begun

diff --git a/lisp/gnus.el b/lisp/gnus.el
index 3e71229..eb2531b 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -294,7 +294,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; is restarted, and sometimes reloaded."
   :link '(custom-manual "(gnus)Exiting Gnus")
   :group 'gnus)
 
-(defconst gnus-version-number "0.7"
+(defconst gnus-version-number "0.8"
   "Version number for this version of Gnus.")
 
 (defconst gnus-version (format "Ma Gnus v%s" gnus-version-number)
diff --git a/texi/gnus.texi b/texi/gnus.texi
index a6f5d1f..52eb209 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -46,7 +46,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; modify this GNU manual.''
 \begin{document}
 
 % Adjust ../Makefile.in if you change the following line:
-\newcommand{\gnusversionname}{Ma Gnus v0.7}
+\newcommand{\gnusversionname}{Ma Gnus v0.8}
 \newcommand{\gnuschaptername}{}
 \newcommand{\gnussectionname}{}
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -357,7 +357,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; spool or your mbox file.  All at the same time, if you want to push your
 luck.
 
 &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change the following line:
-This manual corresponds to Ma Gnus v0.7
+This manual corresponds to Ma Gnus v0.8
 
 &amp;lt; at &amp;gt;ifnottex
 &amp;lt; at &amp;gt;insertcopying
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -391,7 +391,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; people should be empowered to do what they want by using (or abusing)
 the program.
 
 &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change the following line:
-This manual corresponds to Ma Gnus v0.7
+This manual corresponds to Ma Gnus v0.8
 
 &amp;lt; at &amp;gt;heading Other related manuals
 &amp;lt; at &amp;gt;itemize
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -28889,7 +28889,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Gnus will work.
 &amp;lt; at &amp;gt;item
 Try doing an &amp;lt; at &amp;gt;kbd{M-x gnus-version}.  If you get something that looks
 like &amp;lt; at &amp;gt;c
-&amp;lt; at &amp;gt;samp{Ma Gnus v0.7} &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change this line!
+&amp;lt; at &amp;gt;samp{Ma Gnus v0.8} &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change this line!
 &amp;lt; at &amp;gt;c
 you have the right files loaded.  Otherwise you have some old &amp;lt; at &amp;gt;file{.el}
 files lying around.  Delete these.
diff --git a/texi/message.texi b/texi/message.texi
index a336de7..ef3bf84 100644
--- a/texi/message.texi
+++ b/texi/message.texi
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -76,7 +76,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Message mode buffers.
 &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change the following lines:
 Message is distributed with Gnus.  The Gnus distribution
 &amp;lt; at &amp;gt;c
-corresponding to this manual is Ma Gnus v0.7
+corresponding to this manual is Ma Gnus v0.8
 
 
 &amp;lt; at &amp;gt;node Interface

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/gnus.el      |    2 +-
 texi/gnus.texi    |    8 ++++----
 texi/message.texi |    2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Lars Magne Ingebrigtsen</dc:creator>
    <dc:date>2013-05-01T20:11:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.gnus.cvs/12304">
    <title>[gnus git]  branch master updated: m0-5-320-gd1dcfa1 =1= Ma Gnus v0.7 is released</title>
    <link>http://permalink.gmane.org/gmane.emacs.gnus.cvs/12304</link>
    <description>&lt;pre&gt;       via  d1dcfa1a2d0361a9ea3563065e653c3e2c9dbfe1 (commit)
      from  7b0e0b33e03537450d7f6ea2fdc7aa352719428d (commit)


- Log -----------------------------------------------------------------
commit d1dcfa1a2d0361a9ea3563065e653c3e2c9dbfe1
Author: Lars Magne Ingebrigtsen &amp;lt;larsi&amp;lt; at &amp;gt;gnus.org&amp;gt;
Date:   Wed May 1 22:11:07 2013 +0200

    Ma Gnus v0.7 is released

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2528343..e745774 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+2013-05-01  Lars Magne Ingebrigtsen  &amp;lt;lars&amp;lt; at &amp;gt;ingebrigtsen.no&amp;gt;
+
+* gnus.el: Ma Gnus v0.7 is released.
+
 2013-05-01  Katsumi Yamaoka  &amp;lt;yamaoka&amp;lt; at &amp;gt;jpl.org&amp;gt;
 
 * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
diff --git a/lisp/gnus.el b/lisp/gnus.el
index c4e6931..3e71229 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -294,7 +294,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; is restarted, and sometimes reloaded."
   :link '(custom-manual "(gnus)Exiting Gnus")
   :group 'gnus)
 
-(defconst gnus-version-number "0.6"
+(defconst gnus-version-number "0.7"
   "Version number for this version of Gnus.")
 
 (defconst gnus-version (format "Ma Gnus v%s" gnus-version-number)
diff --git a/texi/gnus.texi b/texi/gnus.texi
index 41b33f8..a6f5d1f 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -46,7 +46,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; modify this GNU manual.''
 \begin{document}
 
 % Adjust ../Makefile.in if you change the following line:
-\newcommand{\gnusversionname}{Ma Gnus v0.6}
+\newcommand{\gnusversionname}{Ma Gnus v0.7}
 \newcommand{\gnuschaptername}{}
 \newcommand{\gnussectionname}{}
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -357,7 +357,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; spool or your mbox file.  All at the same time, if you want to push your
 luck.
 
 &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change the following line:
-This manual corresponds to Ma Gnus v0.6
+This manual corresponds to Ma Gnus v0.7
 
 &amp;lt; at &amp;gt;ifnottex
 &amp;lt; at &amp;gt;insertcopying
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -391,7 +391,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; people should be empowered to do what they want by using (or abusing)
 the program.
 
 &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change the following line:
-This manual corresponds to Ma Gnus v0.6
+This manual corresponds to Ma Gnus v0.7
 
 &amp;lt; at &amp;gt;heading Other related manuals
 &amp;lt; at &amp;gt;itemize
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -28889,7 +28889,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Gnus will work.
 &amp;lt; at &amp;gt;item
 Try doing an &amp;lt; at &amp;gt;kbd{M-x gnus-version}.  If you get something that looks
 like &amp;lt; at &amp;gt;c
-&amp;lt; at &amp;gt;samp{Ma Gnus v0.6} &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change this line!
+&amp;lt; at &amp;gt;samp{Ma Gnus v0.7} &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change this line!
 &amp;lt; at &amp;gt;c
 you have the right files loaded.  Otherwise you have some old &amp;lt; at &amp;gt;file{.el}
 files lying around.  Delete these.
diff --git a/texi/message.texi b/texi/message.texi
index 950f6c3..a336de7 100644
--- a/texi/message.texi
+++ b/texi/message.texi
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -76,7 +76,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; Message mode buffers.
 &amp;lt; at &amp;gt;c Adjust ../Makefile.in if you change the following lines:
 Message is distributed with Gnus.  The Gnus distribution
 &amp;lt; at &amp;gt;c
-corresponding to this manual is Ma Gnus v0.6
+corresponding to this manual is Ma Gnus v0.7
 
 
 &amp;lt; at &amp;gt;node Interface

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog    |    4 ++++
 lisp/gnus.el      |    2 +-
 texi/gnus.texi    |    8 ++++----
 texi/message.texi |    2 +-
 4 files changed, 10 insertions(+), 6 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
&lt;/pre&gt;</description>
    <dc:creator>Lars Magne Ingebrigtsen</dc:creator>
    <dc:date>2013-05-01T20:11:12</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.emacs.gnus.cvs">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.gnus.cvs</link>
  </textinput>
</rdf:RDF>
