summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2005-04-11 23:12:57 +0000
committerMiles Bader <miles@gnu.org>2005-04-11 23:12:57 +0000
commit9a89f5b0978251238e9eb6a77acd66423b18f354 (patch)
tree157b6064efad52c73471d10183f03dc5e6107af8
parent36e2ae50ea5e75062aafb66b7e37c2d818c8fd44 (diff)
downloademacs-9a89f5b0978251238e9eb6a77acd66423b18f354.tar.gz
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 <yamaoka@jpl.org> * lisp/gnus/gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/gnus-art.el4
2 files changed, 6 insertions, 2 deletions
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 <yamaoka@jpl.org>
+
+ * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
+
2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
* 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))))))