aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/window.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b8477293e76..a89b46bf144 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12014-07-29 Martin Rudalics <rudalics@gmx.at>
2
3 * window.el (window--state-put-2): Handle horizontal scroll
4 bars, if present.
5
12014-07-29 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> 62014-07-29 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
2 7
3 * menu-bar.el (menu-bar-update-buffers): Update item list format 8 * menu-bar.el (menu-bar-update-buffers): Update item list format
diff --git a/lisp/window.el b/lisp/window.el
index f55f0657a30..28a2be00af9 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -5121,7 +5121,7 @@ value can be also stored on disk and read back in a new session."
5121 (let ((scroll-bars (cdr (assq 'scroll-bars state)))) 5121 (let ((scroll-bars (cdr (assq 'scroll-bars state))))
5122 (set-window-scroll-bars 5122 (set-window-scroll-bars
5123 window (car scroll-bars) (nth 2 scroll-bars) 5123 window (car scroll-bars) (nth 2 scroll-bars)
5124 (nth 3 scroll-bars))) 5124 (or (nth 3 scroll-bars) 0) (nth 5 scroll-bars)))
5125 (set-window-vscroll window (cdr (assq 'vscroll state))) 5125 (set-window-vscroll window (cdr (assq 'vscroll state)))
5126 ;; Adjust vertically. 5126 ;; Adjust vertically.
5127 (if (memq window-size-fixed '(t height)) 5127 (if (memq window-size-fixed '(t height))