From: Richard M. Stallman Date: Thu, 21 Apr 1994 08:33:48 +0000 (+0000) Subject: (x_make_frame_visible): Args to x_set_offset were swapped. X-Git-Tag: emacs-19.34~8852 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=996e89cd0501cacfa2168f062c057094399c15fc;p=emacs.git (x_make_frame_visible): Args to x_set_offset were swapped. --- diff --git a/src/xterm.c b/src/xterm.c index 0353250af7a..7177d826a8f 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5372,7 +5372,7 @@ x_make_frame_visible (f) if (! FRAME_VISIBLE_P (f)) { #ifdef HAVE_X11 - x_set_offset (f, f->display.x->top_pos, f->display.x->left_pos, 0); + x_set_offset (f, f->display.x->left_pos, f->display.x->top_pos, 0); if (! EQ (Vx_no_window_manager, Qt)) x_wm_set_window_state (f, NormalState);