aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-26 21:09:54 +0000
committerRichard M. Stallman1994-01-26 21:09:54 +0000
commit4466efa5538dd20997a358c5e8aa4b93e78d3182 (patch)
treebaf72591889fd10def109d404035fbe9d896caea /src
parentf389294647bf1ad2967b6be2ac9d84c6a7416d70 (diff)
downloademacs-4466efa5538dd20997a358c5e8aa4b93e78d3182.tar.gz
emacs-4466efa5538dd20997a358c5e8aa4b93e78d3182.zip
(x_set_mouse_position): Don't raise the frame.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 2 insertions, 0 deletions
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)
4585{ 4585{
4586 int pix_x, pix_y; 4586 int pix_x, pix_y;
4587 4587
4588#if 0 /* Let the user ask for this if he wants it. */
4588 x_raise_frame (f); 4589 x_raise_frame (f);
4590#endif
4589 4591
4590 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->display.x->font) / 2; 4592 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->display.x->font) / 2;
4591 pix_y = CHAR_TO_PIXEL_ROW (f, y) + FONT_HEIGHT (f->display.x->font) / 2; 4593 pix_y = CHAR_TO_PIXEL_ROW (f, y) + FONT_HEIGHT (f->display.x->font) / 2;