Emacs frame above the screen size.
+2001-02-14 Andrew Innes <andrewi@gnu.org>
+
+ * w32fns.c (w32_wnd_proc) <WM_GETMINMAXINFO>: Allow resizing the
+ Emacs frame above the screen size.
+
2001-02-14 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (reseat_1): Set iterator's end_charpos to ZV.
/* Hack to correct bug that allows Emacs frames to be resized
below the Minimum Tracking Size. */
((LPMINMAXINFO) lParam)->ptMinTrackSize.y++;
+ /* Hack to allow resizing the Emacs frame above the screen size.
+ Note that Windows 9x limits coordinates to 16-bits. */
+ ((LPMINMAXINFO) lParam)->ptMaxTrackSize.x = 32767;
+ ((LPMINMAXINFO) lParam)->ptMaxTrackSize.y = 32767;
return 0;
case WM_EMACS_CREATESCROLLBAR: