]> git.eshelyaron.com Git - emacs.git/commit
Fix creation of frames on MS-Windows: don't cons Lisp objects in input thread.
authorEli Zaretskii <eliz@gnu.org>
Tue, 30 Sep 2014 13:53:24 +0000 (16:53 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 30 Sep 2014 13:53:24 +0000 (16:53 +0300)
commit572fe798cd0a00ad4a9050a7962cf8e8fbcc209b
treec08a6041773d15fb13f03458575c1b37f319d84f
parent42d4302f246931b0f92aa5341fe1a8cd9745db08
Fix creation of frames on MS-Windows: don't cons Lisp objects in input thread.

 src/w32fns.c (w32_createwindow): Accept an additional argument, an
 array of 2 values specifying the coordinates of the frame's
 top-left corner.  Use these values instead of calling x_get_arg,
 which can cons Lisp objects, and therefore cannot be called except
 from the main thread.  Remove redundant tests for the default
 values.
 (my_create_window): Move the calculation of the coordinates of the
 frame's top-left edge here.  Pass them to the input thread via the
 second parameter of the WM_EMACS_CREATEWINDOW message.  See
 http://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00892.html
 for the details.
src/ChangeLog
src/w32fns.c