From: Miles Bader Date: Mon, 11 Apr 2005 23:12:57 +0000 (+0000) Subject: Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-248 X-Git-Tag: ttn-vms-21-2-B4~1052 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9a89f5b0978251238e9eb6a77acd66423b18f354;p=emacs.git Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-248 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 60-61) - Merge from emacs--cvs-trunk--0 - Update from CVS 2005-04-11 Katsumi Yamaoka * lisp/gnus/gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens. --- diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 514de4501ca..2dad5e1eb26 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -9,6 +9,10 @@ * mm-util.el (mm-string-to-multibyte): New function. (mm-detect-coding-region): Typo. +2005-04-11 Katsumi Yamaoka + + * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens. + 2005-04-06 Katsumi Yamaoka * mm-util.el (mm-coding-system-p): Don't return binary for the nil diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 9d09e58fd31..fdf3aad70fe 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el @@ -5309,7 +5309,7 @@ not have a face in `gnus-article-boring-faces'." (when (eq win (selected-window)) (setq new-sum-point (point) new-sum-start (window-start win) - new-sum-hscroll (window-hscroll win)) + new-sum-hscroll (window-hscroll win))) (when (eq in-buffer (current-buffer)) (setq selected (gnus-summary-select-article)) (set-buffer obuf) @@ -5325,7 +5325,7 @@ not have a face in `gnus-article-boring-faces'." new-sum-point) (set-window-point win new-sum-point) (set-window-start win new-sum-start) - (set-window-hscroll win new-sum-hscroll))))) + (set-window-hscroll win new-sum-hscroll)))) (set-window-configuration owin) (ding))))))