summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-06-25 22:37:06 +0000
committerRichard M. Stallman <rms@gnu.org>2005-06-25 22:37:06 +0000
commit29e952546a2a2d16c5e397d5924a2a2086b370ec (patch)
treee83734e1040e66e38d7a920db053db568217021a /src
parent493c1d49e5bb81a0af9fa91cb5098b80ed531547 (diff)
downloademacs-29e952546a2a2d16c5e397d5924a2a2086b370ec.tar.gz
(Fx_show_tip): Pass new arg to try_window.
Diffstat (limited to 'src')
-rw-r--r--src/macfns.c2
-rw-r--r--src/w32fns.c2
-rw-r--r--src/xfns.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/macfns.c b/src/macfns.c
index da1afa13bd8..d0e97e15f69 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 e9af1b8ce2f..36131f2d1d8 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 4e0e18137c3..17a93ac887e 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;