aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-06-25 22:37:06 +0000
committerRichard M. Stallman2005-06-25 22:37:06 +0000
commit29e952546a2a2d16c5e397d5924a2a2086b370ec (patch)
treee83734e1040e66e38d7a920db053db568217021a /src
parent493c1d49e5bb81a0af9fa91cb5098b80ed531547 (diff)
downloademacs-29e952546a2a2d16c5e397d5924a2a2086b370ec.tar.gz
emacs-29e952546a2a2d16c5e397d5924a2a2086b370ec.zip
(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. */)
4088 clear_glyph_matrix (w->desired_matrix); 4088 clear_glyph_matrix (w->desired_matrix);
4089 clear_glyph_matrix (w->current_matrix); 4089 clear_glyph_matrix (w->current_matrix);
4090 SET_TEXT_POS (pos, BEGV, BEGV_BYTE); 4090 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
4091 try_window (FRAME_ROOT_WINDOW (f), pos); 4091 try_window (FRAME_ROOT_WINDOW (f), pos, 0);
4092 4092
4093 /* Compute width and height of the tooltip. */ 4093 /* Compute width and height of the tooltip. */
4094 width = height = 0; 4094 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. */)
7586 clear_glyph_matrix (w->desired_matrix); 7586 clear_glyph_matrix (w->desired_matrix);
7587 clear_glyph_matrix (w->current_matrix); 7587 clear_glyph_matrix (w->current_matrix);
7588 SET_TEXT_POS (pos, BEGV, BEGV_BYTE); 7588 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
7589 try_window (FRAME_ROOT_WINDOW (f), pos); 7589 try_window (FRAME_ROOT_WINDOW (f), pos, 0);
7590 7590
7591 /* Compute width and height of the tooltip. */ 7591 /* Compute width and height of the tooltip. */
7592 width = height = 0; 7592 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. */)
5086 clear_glyph_matrix (w->desired_matrix); 5086 clear_glyph_matrix (w->desired_matrix);
5087 clear_glyph_matrix (w->current_matrix); 5087 clear_glyph_matrix (w->current_matrix);
5088 SET_TEXT_POS (pos, BEGV, BEGV_BYTE); 5088 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
5089 try_window (FRAME_ROOT_WINDOW (f), pos); 5089 try_window (FRAME_ROOT_WINDOW (f), pos, 0);
5090 5090
5091 /* Compute width and height of the tooltip. */ 5091 /* Compute width and height of the tooltip. */
5092 width = height = 0; 5092 width = height = 0;