]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_create_frame): Pass 0 as 3rd arg to x_wm_set_size_hint.
authorRichard M. Stallman <rms@gnu.org>
Sat, 30 Apr 1994 00:13:44 +0000 (00:13 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 30 Apr 1994 00:13:44 +0000 (00:13 +0000)
(x_figure_window_size): Fix typo setting XNegative.

src/xfns.c

index a56a302a2b57ad14110fdab88ec83108b4579875..20c82a795823028337fd53c890a2357471eedf4e 100644 (file)
@@ -1648,7 +1648,7 @@ x_figure_window_size (f, parms)
       if (f->display.x->top_pos < 0)
        window_prompting |= YNegative;
       if (f->display.x->left_pos < 0)
-       window_prompting |= YNegative;
+       window_prompting |= XNegative;
       window_prompting |= USPosition;
     }
   else if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
@@ -2288,7 +2288,7 @@ be shared by the new frame.")
 /* With the toolkit, the geometry management is done in x_window.  */
 #ifndef USE_X_TOOLKIT
   BLOCK_INPUT;
-  x_wm_set_size_hint (f, window_prompting, 1);
+  x_wm_set_size_hint (f, window_prompting, 0);
   UNBLOCK_INPUT;
 #endif /* USE_X_TOOLKIT */