aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-28 07:46:27 +0000
committerRichard M. Stallman1994-04-28 07:46:27 +0000
commitd7a38a2ed90b2eefb57f3a8408f2c5cbb184829a (patch)
tree65218738a719a16c341ac68e41c77b97463ecfde /src
parentb207d6b3148e85dbb5a3c456015cc67004fb2e75 (diff)
downloademacs-d7a38a2ed90b2eefb57f3a8408f2c5cbb184829a.tar.gz
emacs-d7a38a2ed90b2eefb57f3a8408f2c5cbb184829a.zip
(x_make_frame_visible): Use XtMapWidget, not XtPopup.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index cb43d39308e..f35d3be6e5d 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -5389,7 +5389,8 @@ x_make_frame_visible (f)
5389 if (! EQ (Vx_no_window_manager, Qt)) 5389 if (! EQ (Vx_no_window_manager, Qt))
5390 x_wm_set_window_state (f, NormalState); 5390 x_wm_set_window_state (f, NormalState);
5391#ifdef USE_X_TOOLKIT 5391#ifdef USE_X_TOOLKIT
5392 XtPopup (f->display.x->widget, XtGrabNone); 5392 /* This was XtPopup, but that did nothing for an iconified frame. */
5393 XtMapWidget (f->display.x->widget);
5393#else /* not USE_X_TOOLKIT */ 5394#else /* not USE_X_TOOLKIT */
5394 XMapWindow (XDISPLAY FRAME_X_WINDOW (f)); 5395 XMapWindow (XDISPLAY FRAME_X_WINDOW (f));
5395#endif /* not USE_X_TOOLKIT */ 5396#endif /* not USE_X_TOOLKIT */