From 29e952546a2a2d16c5e397d5924a2a2086b370ec Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 25 Jun 2005 22:37:06 +0000 Subject: [PATCH] (Fx_show_tip): Pass new arg to try_window. --- src/macfns.c | 2 +- src/w32fns.c | 2 +- src/xfns.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/macfns.c b/src/macfns.c index da1afa13bd..d0e97e15f6 100644 --- a/src/macfns.c +++ b/src/macfns.c @@ -4088,7 +4088,7 @@ Text larger than the specified size is clipped. */) 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 --git a/src/w32fns.c b/src/w32fns.c index e9af1b8ce2..36131f2d1d 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -7586,7 +7586,7 @@ Text larger than the specified size is clipped. */) 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 --git a/src/xfns.c b/src/xfns.c index 4e0e18137c..17a93ac887 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -5086,7 +5086,7 @@ Text larger than the specified size is clipped. */) 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; -- 2.39.2