gnus-sum.el (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
authorAndrew Cohen <cohen@andy.bu.edu>
Fri, 17 Dec 2010 15:52:39 +0000 (10:52 -0500)
committerAndrew Cohen <cohen@andy.bu.edu>
Fri, 17 Dec 2010 15:52:39 +0000 (10:52 -0500)
lisp/ChangeLog
lisp/gnus-sum.el

index 9d85005..fcf97ee 100644 (file)
@@ -2,6 +2,7 @@
 
        * gnus-sum.el (gnus-summary-refer-thread): Simplify code. Restore
        gnus-use-agent.
+       (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
 
        * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
 
index 1966e4a..5ce9cf7 100644 (file)
@@ -6262,6 +6262,7 @@ The resulting hash table is returned, or nil if no Xrefs were found."
                               gnus-newsgroup-ignored-charsets)))
     (with-current-buffer nntp-server-buffer
       ;; Translate all TAB characters into SPACE characters.
+      (nnheader-remove-cr-followed-by-lf)
       (subst-char-in-region (point-min) (point-max) ?\t ?  t)
       (subst-char-in-region (point-min) (point-max) ?\r ?  t)
       (ietf-drums-unfold-fws)