diff options
| author | Richard M. Stallman | 1997-07-05 08:23:34 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-05 08:23:34 +0000 |
| commit | 4d3f5d9ab7e23f62c40d98f0b837a41a3a9273bb (patch) | |
| tree | fe813a0c0981e24438a793c5b1342355ab3fb3dc /src | |
| parent | 34fbcdf384c7856350b5ae3cdc9d36920fb1390d (diff) | |
| download | emacs-4d3f5d9ab7e23f62c40d98f0b837a41a3a9273bb.tar.gz emacs-4d3f5d9ab7e23f62c40d98f0b837a41a3a9273bb.zip | |
(x_make_frame_visible): Don't move the frame
if it was iconified--only if it was invisible.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 6393ae5202e..6cc3f83b098 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -5709,7 +5709,7 @@ x_make_frame_visible (f) | |||
| 5709 | because the window manager may choose the position | 5709 | because the window manager may choose the position |
| 5710 | and we don't want to override it. */ | 5710 | and we don't want to override it. */ |
| 5711 | 5711 | ||
| 5712 | if (! FRAME_VISIBLE_P (f) | 5712 | if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f) |
| 5713 | && f->output_data.x->win_gravity == NorthWestGravity | 5713 | && f->output_data.x->win_gravity == NorthWestGravity |
| 5714 | && previously_visible) | 5714 | && previously_visible) |
| 5715 | { | 5715 | { |