]> git.eshelyaron.com Git - emacs.git/commit
Fix handling of frame position values
authorMartin Rudalics <rudalics@gmx.at>
Mon, 10 Mar 2025 08:33:17 +0000 (09:33 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:53:13 +0000 (19:53 +0100)
commit2dbdd8a9a2dfa4a9c2b3466cb97651fd3cce944f
tree44ff64fb498c6c5b9e59403ffaba28b0f97bfd0a
parent6e29fcd095cdba9b1cf879de65fd26c0d9e44c69
Fix handling of frame position values

* src/frame.c (tty_child_pos_param): Handle additional position
values.  New SIZE argument.
(tty_child_frame_rect): Process size before position.
(Fmake_terminal_frame): Do not store calculated size/position
values in parameters to avoid that a negative absolute position
is later interpreted as position relative to bottom/right edge
of parent.
(Fmodify_frame_parameters): For tty child frames process size
before position values so the latter can take a new size into
account.
* src/frame.h: Adjust declaration of tty_child_pos_param.
* src/gtkutil.c (xg_set_geometry): Handle negative frame
position specifications.
* src/msdos.c (IT_set_frame_parameters): For tty child frames
process size before position parameters.
* src/xfns.c (x_window): In the non-GTK toolkit variant leave
negative position values unchanged - the toolkit should know how
to handle them.  Process child frame position parameters
separately.  In the non-toolkit variant process child frame
parameters separately.

(cherry picked from commit cbad6215cf4fef826fa9c3600765a7c696872eaf)
src/frame.c
src/frame.h
src/gtkutil.c
src/msdos.c
src/xfns.c