aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-02 00:45:44 +0000
committerRichard M. Stallman1994-05-02 00:45:44 +0000
commit38d2204001d6da1337956c99d8548350632cdc3c (patch)
tree26dae37f14690de3210734f4ba000a23608ba1a6 /src
parent20f55f9a243edeb65197495d5b7f1a6cd92f804c (diff)
downloademacs-38d2204001d6da1337956c99d8548350632cdc3c.tar.gz
emacs-38d2204001d6da1337956c99d8548350632cdc3c.zip
(Fx_create_frame): Set the size_hint_flags field.
Don't call x_calc_absolute_position.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 9a2555c542a..8f01f66ee15 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1862,7 +1862,7 @@ x_window (f, window_prompting, minibuffer_only)
1862 XtSetValues (shell_widget, al, ac); 1862 XtSetValues (shell_widget, al, ac);
1863 } 1863 }
1864 1864
1865 x_calc_absolute_position (f, window_prompting); 1865 x_calc_absolute_position (f);
1866 1866
1867 XtManageChild (pane_widget); 1867 XtManageChild (pane_widget);
1868 XtRealizeWidget (shell_widget); 1868 XtRealizeWidget (shell_widget);
@@ -2258,6 +2258,8 @@ be shared by the new frame.")
2258 f->display.x->win_gravity = NorthWestGravity; 2258 f->display.x->win_gravity = NorthWestGravity;
2259 } 2259 }
2260 2260
2261 f->display.x->size_hint_flags = window_prompting;
2262
2261#ifdef USE_X_TOOLKIT 2263#ifdef USE_X_TOOLKIT
2262 x_window (f, window_prompting, minibuffer_only); 2264 x_window (f, window_prompting, minibuffer_only);
2263#else 2265#else