From: Richard M. Stallman Date: Sat, 5 Jul 1997 08:23:34 +0000 (+0000) Subject: (x_make_frame_visible): Don't move the frame X-Git-Tag: emacs-20.1~1316 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4d3f5d9ab7e23f62c40d98f0b837a41a3a9273bb;p=emacs.git (x_make_frame_visible): Don't move the frame if it was iconified--only if it was invisible. --- 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) because the window manager may choose the position and we don't want to override it. */ - if (! FRAME_VISIBLE_P (f) + if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f) && f->output_data.x->win_gravity == NorthWestGravity && previously_visible) {