Mercurial > emacs
changeset 63772:b9edfe751512
(Fx_show_tip): Pass new arg to try_window.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 25 Jun 2005 22:37:06 +0000 |
parents | c695baa505d4 |
children | acc7aebbc70e |
files | src/macfns.c src/w32fns.c src/xfns.c |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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;
--- 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;
--- 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;