]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_figure_window_size): For fullscreen case,
authorRichard M. Stallman <rms@gnu.org>
Wed, 24 Oct 2007 08:24:01 +0000 (08:24 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 24 Oct 2007 08:24:01 +0000 (08:24 +0000)
set USPosition | PPosition without clobbering rest of window_prompting.

src/frame.c

index df98475d7b308a68c14769b3001bcdd792c61449..7ba3e9928aba7dc49d94485b876c3743819adacc 100644 (file)
@@ -3922,7 +3922,7 @@ x_figure_window_size (f, parms, toolbar_p)
       int width, height;
 
       /* It takes both for some WM:s to place it where we want */
-      window_prompting = USPosition | PPosition;
+      window_prompting |= USPosition | PPosition;
       x_fullscreen_adjust (f, &width, &height, &top, &left);
       FRAME_COLS (f) = width;
       FRAME_LINES (f) = height;