[gnus git] branch master updated: =4= (nnimap-wait-for-response): Ensure that we get the entire line we're waiting for. ; Resolved. ; * 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. ; Resolved.
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 926f7e5310c3e3fffda7951d369f38a52de5445b (commit)
via 9e1f59fad53d9d088eea40a504be5d2f7161b126 (commit)
via fb32cb1d5435873a7d172b0af2e9c58784ab5e6f (commit)
via 034fc45e1b33c9a9ea9650727355007a6f12cde0 (commit)
from 9ab51f6a02081679248af3e1f5be2d2189ff7588 (commit)
- Log -----------------------------------------------------------------
commit 926f7e5310c3e3fffda7951d369f38a52de5445b
Author: Lars Ingebrigtsen <[email protected]>
Date: Sat Feb 19 17:03:16 2011 -0800
(nnimap-wait-for-response): Ensure that we get the entire line we're waiting for.
diff --git a/lisp/nnimap.el b/lisp/nnimap.el
index 6b726b2..83b8c41 100644
--- a/lisp/nnimap.el
+++ b/lisp/nnimap.el
@@ -1641,7 +1641,7 @@ textual parts.")
(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)
commit 9e1f59fad53d9d088eea40a504be5d2f7161b126
Author: Lars Ingebrigtsen <[email protected]>
Date: Sat Feb 19 17:04:45 2011 -0800
Resolved.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d439885..950f067 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -7,6 +7,11 @@
* nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
in case it's not yet loaded.
+2011-02-20 Lars Ingebrigtsen <[email protected]>
+
+ * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
+ line we're waiting for.
+
2011-02-19 Darren Hoo <[email protected]> (tiny change)
* gnus-art.el (gnus-article-next-page-1): Because customized mode-line
commit fb32cb1d5435873a7d172b0af2e9c58784ab5e6f
Author: Darren Hoo <[email protected]>
Date: Sat Feb 19 13:18:32 2011 -0800
* 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.
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 533b010..19eee78 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -6322,7 +6322,8 @@ specifies."
(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.
commit 034fc45e1b33c9a9ea9650727355007a6f12cde0
Author: Lars Ingebrigtsen <[email protected]>
Date: Sat Feb 19 17:04:26 2011 -0800
Resolved.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7741525..d439885 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -7,6 +7,13 @@
* nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
in case it's not yet loaded.
+2011-02-19 Darren Hoo <[email protected]> (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 <[email protected]>
* nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
-----------------------------------------------------------------------
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 | 12 ++++++++++++
lisp/gnus-art.el | 3 ++-
lisp/nnimap.el | 2 +-
3 files changed, 15 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
--
Gnus Project