emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r103359: nnimap.el (nnimap-wait-for-r


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103359: nnimap.el (nnimap-wait-for-response): Ensure that we get the entire line we're waiting for.
Date: Sun, 20 Feb 2011 04:08:04 +0000
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103359
author: Gnus developers <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Sun 2011-02-20 04:08:04 +0000
message:
  nnimap.el (nnimap-wait-for-response): Ensure that we get the entire line 
we're waiting for.
  gnus-art.el (gnus-article-next-page-1): Because customized mode-line face 
with line-width greater than zero will cause RET in gnus summary buffer to 
scroll down article page-wise because auto vscroll happens, it should be 
temporalily disabled when doing a scroll-up.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-art.el
  lisp/gnus/nnimap.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2011-02-19 19:40:59 +0000
+++ b/lisp/gnus/ChangeLog       2011-02-20 04:08:04 +0000
@@ -7,6 +7,18 @@
        * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
        in case it's not yet loaded.
 
+2011-02-20  Lars Ingebrigtsen  <address@hidden>
+
+       * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
+       line we're waiting for.
+
+2011-02-19  Darren Hoo  <address@hidden>  (tiny change)
+
+       * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
+       face with line-width greater than zero will cause RET in gnus summary
+       buffer to scroll down article page-wise because auto vscroll happens,
+       it should be temporalily disabled when doing a scroll-up.
+
 2011-02-19  Lars Ingebrigtsen  <address@hidden>
 
        * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"

=== modified file 'lisp/gnus/gnus-art.el'
--- a/lisp/gnus/gnus-art.el     2011-02-19 09:45:07 +0000
+++ b/lisp/gnus/gnus-art.el     2011-02-20 04:08:04 +0000
@@ -6322,7 +6322,8 @@
 
 (defun gnus-article-next-page-1 (lines)
   (condition-case ()
-      (let ((scroll-in-place nil))
+      (let ((scroll-in-place nil)
+           (auto-window-vscroll nil))
        (scroll-up lines))
     (end-of-buffer
      ;; Long lines may cause an end-of-buffer error.

=== modified file 'lisp/gnus/nnimap.el'
--- a/lisp/gnus/nnimap.el       2011-02-19 09:45:07 +0000
+++ b/lisp/gnus/nnimap.el       2011-02-20 04:08:04 +0000
@@ -1641,7 +1641,7 @@
                                    (progn
                                      (forward-line -1)
                                      (looking-at "\\*"))))
-                       (not (looking-at (format "%d " sequence)))))
+                       (not (looking-at (format "%d .*\n" sequence)))))
            (when messagep
              (nnheader-message 7 "nnimap read %dk" (/ (buffer-size) 1000)))
            (nnheader-accept-process-output process)


reply via email to

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