* w32term.c (w32_enable_frame_resize_hack): Default to 1.
* window.el (display-buffer-below-selected): Bind
split-height-threshold to 0 as suggested by Juri Linkov.
+2013-12-16 Martin Rudalics <rudalics@gmx.at>
+
+ * window.el (display-buffer-below-selected): Bind
+ split-height-threshold to 0 as suggested by Juri Linkov.
+
2013-12-16 Leo Liu <sdl.web@gmail.com>
* progmodes/compile.el (compile-goto-error): Do not push-mark.
the selected one."
(let (window)
(or (and (not (frame-parameter nil 'unsplittable))
- (let (split-width-threshold)
+ (let ((split-height-threshold 0)
+ split-width-threshold)
(setq window (window--try-to-split-window (selected-window) alist)))
(window--display-buffer
buffer window 'window alist display-buffer-mark-dedicated))
+2013-12-16 Martin Rudalics <rudalics@gmx.at>
+
+ * w32term.c (w32_enable_frame_resize_hack): Default to 1.
+
2013-12-16 Dmitry Antipov <dmantipov@yandex.ru>
* font.c (valid_font_driver) [ENABLE_CHECKING]: New function
windows after the latter calls back. If this is non-nil, Emacs changes
the pixel sizes of the frame and its windows at the time it sends the
resize request to the API. */);
- w32_enable_frame_resize_hack = 0;
+ w32_enable_frame_resize_hack = 1;
/* Tell Emacs about this window system. */
Fprovide (Qw32, Qnil);