emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r101996: * lisp/gnus/nnimap.el (nnima


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101996: * lisp/gnus/nnimap.el (nnimap-request-move-article, nnimap-parse-line)
Date: Mon, 18 Oct 2010 20:13:27 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101996
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Mon 2010-10-18 20:13:27 -0400
message:
  * lisp/gnus/nnimap.el (nnimap-request-move-article, nnimap-parse-line)
  (nnimap-process-expiry-targets): Use unibyte for buffers that hold
  undecoded network data.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/nnimap.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2010-10-18 23:41:03 +0000
+++ b/lisp/gnus/ChangeLog       2010-10-19 00:13:27 +0000
@@ -1,3 +1,9 @@
+2010-10-19  Stefan Monnier  <address@hidden>
+
+       * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
+       (nnimap-process-expiry-targets): Use unibyte for buffers that hold
+       undecoded network data.
+
 2010-10-18  Lars Magne Ingebrigtsen  <address@hidden>
 
        * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
@@ -20,9 +26,9 @@
 
 2010-10-18  Andrew Cohen  <address@hidden>
 
-       * gnus-registry.el (gnus-registry-split-fancy-with-parent): Splitting
-       according to references/in-reply-to obeys the ignore-groups variable,
-       while splitting by sender and subject do not.
+       * gnus-registry.el (gnus-registry-split-fancy-with-parent):
+       Splitting according to references/in-reply-to obeys the ignore-groups
+       variable, while splitting by sender and subject do not.
 
 2010-10-18  Lars Magne Ingebrigtsen  <address@hidden>
 
@@ -48,7 +54,7 @@
 
 2010-10-15  Andrew Cohen  <address@hidden>
 
-       * gnus-sum.el (gnus-summary-refer-thread): unconditionally ignore
+       * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
        duplicates.
 
 2010-10-15  Kan-Ru Chen  <address@hidden>  (tiny change)

=== modified file 'lisp/gnus/nnimap.el'
--- a/lisp/gnus/nnimap.el       2010-10-18 22:09:28 +0000
+++ b/lisp/gnus/nnimap.el       2010-10-19 00:13:27 +0000
@@ -714,6 +714,7 @@
 (deffoo nnimap-request-move-article (article group server accept-form
                                             &optional last internal-move-group)
   (with-temp-buffer
+    (mm-disable-multibyte)
     (when (nnimap-request-article article group server (current-buffer))
       ;; If the move is internal (on the same server), just do it the easy
       ;; way.
@@ -769,6 +770,7 @@
     (dolist (article articles)
       (let ((target nnmail-expiry-target))
        (with-temp-buffer
+          (mm-disable-multibyte)
          (when (nnimap-request-article article group server (current-buffer))
            (nnheader-message 7 "Expiring article %s:%d" group article)
            (when (functionp target)
@@ -1474,6 +1476,7 @@
 (defun nnimap-parse-line (line)
   (let (char result)
     (with-temp-buffer
+      (mm-disable-multibyte)
       (insert line)
       (goto-char (point-min))
       (while (not (eobp))


reply via email to

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