emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102669: gnus-agent.el: Indent.


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102669: gnus-agent.el: Indent.
Date: Wed, 15 Dec 2010 22:24:36 +0000
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102669
author: Gnus developers
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Wed 2010-12-15 22:24:36 +0000
message:
  gnus-agent.el: Indent.
  gnus.texi: Fix a couple nnir -> @code{nnir} things.
  nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the QRESYNC 
command by deleting a superfluous space which broke Cyrus servers.  This change 
will break other servers that are buggy the other way around.
  gnus.texi (The hyrex Engine): Say that this engine as obsolete.
modified:
  doc/misc/ChangeLog
  doc/misc/gnus.texi
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-agent.el
  lisp/gnus/nnimap.el
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2010-12-14 22:11:38 +0000
+++ b/doc/misc/ChangeLog        2010-12-15 22:24:36 +0000
@@ -1,3 +1,7 @@
+2010-12-15  Andrew Cohen  <address@hidden>
+
+       * gnus.texi (The hyrex Engine): Say that this engine as obsolete.
+
 2010-12-14  Andrew Cohen  <address@hidden>
 
        * gnus.texi (The swish++ Engine): Add customizable parameters

=== modified file 'doc/misc/gnus.texi'
--- a/doc/misc/gnus.texi        2010-12-14 22:11:38 +0000
+++ b/doc/misc/gnus.texi        2010-12-15 22:24:36 +0000
@@ -793,7 +793,7 @@
 
 nnir
 
-* What is nnir::                What does nnir do.
+* What is nnir?::               What does nnir do.
 * Basic Usage::                 How to perform simple searches.
 * Setting up nnir::             How to set up nnir.
 
@@ -21026,24 +21026,25 @@
 within gnus.
 
 @menu
-* What is nnir::                What does nnir do?
+* What is nnir?::               What does @code{nnir} do?
 * Basic Usage::                 How to perform simple searches.
-* Setting up nnir::             How to set up nnir.
+* Setting up nnir::             How to set up @code{nnir}.
 @end menu
 
address@hidden What is nnir
address@hidden What is nnir
address@hidden What is nnir?
address@hidden What is nnir?
 
address@hidden is a gnus interface to a number of tools for searching
address@hidden is a Gnus interface to a number of tools for searching
 through mail and news repositories. Different backends (like
 @code{nnimap} and @code{nntp}) work with different tools (called
address@hidden in nnir lingo), but all use the same basic search
address@hidden in @code{nnir} lingo), but all use the same basic search
 interface.
 
 The @code{nnimap} and @code{gmane} search engines should work with no
 configuration. Other engines require a local index that needs to be
 created and maintained outside of Gnus. 
 
+
 @node Basic Usage
 @subsection Basic Usage
 
@@ -21083,6 +21084,7 @@
 groups with different search engines you will be prompted for the
 special search features for each engine separately. 
 
+
 @node Setting up nnir
 @subsection Setting up nnir
 
@@ -21120,10 +21122,10 @@
 named @code{home} you can use
 
 @lisp
-(setq gnus-secondary-select-methods '(
-      (nnml "home" 
-            (nnimap-address "localhost")
-            (nnir-search-engine namazu))))
+(setq gnus-secondary-select-methods
+      '((nnml "home" 
+         (nnimap-address "localhost")
+         (nnir-search-engine namazu))))
 @end lisp
 
 Alternatively you might want to use a particular engine for all servers
@@ -21335,7 +21337,7 @@
 
 @node The hyrex Engine
 @subsubsection The hyrex Engine
-FIXME: Add documentation.
+This engine is obsolete.
 
 @node Customizations
 @subsubsection Custimozations

=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2010-12-14 23:08:31 +0000
+++ b/lisp/gnus/ChangeLog       2010-12-15 22:24:36 +0000
@@ -1,3 +1,10 @@
+2010-12-15  Lars Magne Ingebrigtsen  <address@hidden>
+
+       * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
+       QRESYNC command by deleting a superfluous space which broke Cyrus
+       servers.  This change will break other servers that are buggy the other
+       way around.
+
 2010-12-14  Teodor Zlatanov  <address@hidden>
 
        * spam.el: Reindent and fix long lines.

=== modified file 'lisp/gnus/gnus-agent.el'
--- a/lisp/gnus/gnus-agent.el   2010-12-13 22:29:12 +0000
+++ b/lisp/gnus/gnus-agent.el   2010-12-15 22:24:36 +0000
@@ -1513,7 +1513,7 @@
   "Fetch ARTICLES from GROUP and put them into the Agent."
   (when articles
     (gnus-agent-load-alist group)
-    (let* ((alist   gnus-agent-article-alist)
+    (let* ((alist gnus-agent-article-alist)
            (headers (if (< (length articles) 2) nil gnus-newsgroup-headers))
            (selected-sets (list nil))
            (current-set-size 0)
@@ -1555,9 +1555,9 @@
                                       ;; 65 char/line.  If the line count
                                       ;; is missing, arbitrarily assume a
                                       ;; size of 1000 characters.
-                                    (max (* 65 (mail-header-lines
-                                                (car headers)))
-                                         1000)
+                                     (max (* 65 (mail-header-lines
+                                                 (car headers)))
+                                          1000)
                                     char-size))
                              0))))
             (setcar selected-sets (nreverse (car selected-sets)))

=== modified file 'lisp/gnus/nnimap.el'
--- a/lisp/gnus/nnimap.el       2010-12-07 22:12:50 +0000
+++ b/lisp/gnus/nnimap.el       2010-12-15 22:24:36 +0000
@@ -1080,7 +1080,7 @@
                   uidvalidity
                   modseq)
              (push
-              (list (nnimap-send-command "EXAMINE %S (QRESYNC  (%s %s))"
+              (list (nnimap-send-command "EXAMINE %S (QRESYNC (%s %s))"
                                          (utf7-encode group t)
                                          uidvalidity modseq)
                     'qresync


reply via email to

[Prev in Thread] Current Thread [Next in Thread]