Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-248
authorMiles Bader <miles@gnu.org>
Mon, 11 Apr 2005 23:12:57 +0000 (23:12 +0000)
committerMiles Bader <miles@gnu.org>
Mon, 11 Apr 2005 23:12:57 +0000 (23:12 +0000)
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.

lisp/gnus/ChangeLog
lisp/gnus/gnus-art.el

index 514de45..2dad5e1 100644 (file)
@@ -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
index 9d09e58..fdf3aad 100644 (file)
@@ -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))))))