summaryrefslogtreecommitdiff
path: root/lisp/gnus/gnus-art.el
diff options
context:
space:
mode:
authorGnus developers <ding@gnus.org>2011-02-20 04:08:04 +0000
committerKatsumi Yamaoka <yamaoka@jpl.org>2011-02-20 04:08:04 +0000
commit01baa1e6f227a87530f65b7e45049968a1afc12a (patch)
tree74d3eff4f9de66b1005486ed5164b82f933cf1b5 /lisp/gnus/gnus-art.el
parente17816e57e4795e0fd69ab561278c8a302c96771 (diff)
downloademacs-01baa1e6f227a87530f65b7e45049968a1afc12a.tar.gz
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.
Diffstat (limited to 'lisp/gnus/gnus-art.el')
-rw-r--r--lisp/gnus/gnus-art.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index 533b0100ae5..19eee78ab17 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/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.