# HG changeset patch # User Richard M. Stallman # Date 1119739026 0 # Node ID b9edfe7515122838cc4c794377c18188e8a1bf69 # Parent c695baa505d4db778e586058cb4e4e73dd30cafd (Fx_show_tip): Pass new arg to try_window. diff -r c695baa505d4 -r b9edfe751512 src/macfns.c --- a/src/macfns.c Sat Jun 25 22:35:42 2005 +0000 +++ b/src/macfns.c Sat Jun 25 22:37:06 2005 +0000 @@ -4088,7 +4088,7 @@ clear_glyph_matrix (w->desired_matrix); clear_glyph_matrix (w->current_matrix); SET_TEXT_POS (pos, BEGV, BEGV_BYTE); - try_window (FRAME_ROOT_WINDOW (f), pos); + try_window (FRAME_ROOT_WINDOW (f), pos, 0); /* Compute width and height of the tooltip. */ width = height = 0; diff -r c695baa505d4 -r b9edfe751512 src/w32fns.c --- a/src/w32fns.c Sat Jun 25 22:35:42 2005 +0000 +++ b/src/w32fns.c Sat Jun 25 22:37:06 2005 +0000 @@ -7586,7 +7586,7 @@ clear_glyph_matrix (w->desired_matrix); clear_glyph_matrix (w->current_matrix); SET_TEXT_POS (pos, BEGV, BEGV_BYTE); - try_window (FRAME_ROOT_WINDOW (f), pos); + try_window (FRAME_ROOT_WINDOW (f), pos, 0); /* Compute width and height of the tooltip. */ width = height = 0; diff -r c695baa505d4 -r b9edfe751512 src/xfns.c --- a/src/xfns.c Sat Jun 25 22:35:42 2005 +0000 +++ b/src/xfns.c Sat Jun 25 22:37:06 2005 +0000 @@ -5086,7 +5086,7 @@ clear_glyph_matrix (w->desired_matrix); clear_glyph_matrix (w->current_matrix); SET_TEXT_POS (pos, BEGV, BEGV_BYTE); - try_window (FRAME_ROOT_WINDOW (f), pos); + try_window (FRAME_ROOT_WINDOW (f), pos, 0); /* Compute width and height of the tooltip. */ width = height = 0;