diff options
| author | Richard M. Stallman | 2007-10-24 08:24:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-10-24 08:24:01 +0000 |
| commit | 7f6fd740f2830d7aa6a4a01f72a3bd9663b73d4c (patch) | |
| tree | fe97abb19465d8750e085b5e83bfe2ca1e451a9e /src | |
| parent | 3a704bd7e359b1ced7f699b83c8dd6b2d7548cb1 (diff) | |
| download | emacs-7f6fd740f2830d7aa6a4a01f72a3bd9663b73d4c.tar.gz emacs-7f6fd740f2830d7aa6a4a01f72a3bd9663b73d4c.zip | |
(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.c | 2 |
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) | |||
| 3922 | int width, height; | 3922 | int width, height; |
| 3923 | 3923 | ||
| 3924 | /* It takes both for some WM:s to place it where we want */ | 3924 | /* It takes both for some WM:s to place it where we want */ |
| 3925 | window_prompting = USPosition | PPosition; | 3925 | window_prompting |= USPosition | PPosition; |
| 3926 | x_fullscreen_adjust (f, &width, &height, &top, &left); | 3926 | x_fullscreen_adjust (f, &width, &height, &top, &left); |
| 3927 | FRAME_COLS (f) = width; | 3927 | FRAME_COLS (f) = width; |
| 3928 | FRAME_LINES (f) = height; | 3928 | FRAME_LINES (f) = height; |