# HG changeset patch # User Richard M. Stallman # Date 868091014 0 # Node ID 3e414b9da5461477094463e8d6c3fd4bb2aa7cb2 # Parent fbb38f6bf8dc0a845e3a38daf2762f6b6b32aa0d (x_make_frame_visible): Don't move the frame if it was iconified--only if it was invisible. diff -r fbb38f6bf8dc -r 3e414b9da546 src/xterm.c --- a/src/xterm.c Sat Jul 05 03:44:54 1997 +0000 +++ b/src/xterm.c Sat Jul 05 08:23:34 1997 +0000 @@ -5709,7 +5709,7 @@ 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) {