summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-10-24 08:24:01 +0000
committerRichard M. Stallman <rms@gnu.org>2007-10-24 08:24:01 +0000
commit7f6fd740f2830d7aa6a4a01f72a3bd9663b73d4c (patch)
treefe97abb19465d8750e085b5e83bfe2ca1e451a9e /src
parent3a704bd7e359b1ced7f699b83c8dd6b2d7548cb1 (diff)
downloademacs-7f6fd740f2830d7aa6a4a01f72a3bd9663b73d4c.tar.gz
(x_figure_window_size): For fullscreen case,
set USPosition | PPosition without clobbering rest of window_prompting.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index df98475d7b3..7ba3e9928ab 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -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;