From: Richard M. Stallman Date: Wed, 26 Jan 1994 21:09:54 +0000 (+0000) Subject: (x_set_mouse_position): Don't raise the frame. X-Git-Tag: emacs-19.34~10168 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4466efa5538dd20997a358c5e8aa4b93e78d3182;p=emacs.git (x_set_mouse_position): Don't raise the frame. --- diff --git a/src/xterm.c b/src/xterm.c index 2e7ed52597b..0e8e37fa970 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4585,7 +4585,9 @@ x_set_mouse_position (f, x, y) { int pix_x, pix_y; +#if 0 /* Let the user ask for this if he wants it. */ x_raise_frame (f); +#endif pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->display.x->font) / 2; pix_y = CHAR_TO_PIXEL_ROW (f, y) + FONT_HEIGHT (f->display.x->font) / 2;