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
commit2a03e66c4b8631f3109f68bda57583ddad81d41d (patch)
treeaffdc409ae76a01e3e0d5f7b09d32c3d041c7e59 /src
parentadbe854419625016ed394543cd31fbb428c3469b (diff)
downloademacs-2a03e66c4b8631f3109f68bda57583ddad81d41d.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;