From: Richard M. Stallman Date: Wed, 24 Oct 2007 08:24:01 +0000 (+0000) Subject: (x_figure_window_size): For fullscreen case, X-Git-Tag: emacs-pretest-22.1.90~517 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7f6fd740f2830d7aa6a4a01f72a3bd9663b73d4c;p=emacs.git (x_figure_window_size): For fullscreen case, set USPosition | PPosition without clobbering rest of window_prompting. --- 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;