From: Richard M. Stallman Date: Sat, 25 Jun 2005 22:37:06 +0000 (+0000) Subject: (Fx_show_tip): Pass new arg to try_window. X-Git-Tag: emacs-pretest-22.0.90~8637 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=29e952546a2a2d16c5e397d5924a2a2086b370ec;p=emacs.git (Fx_show_tip): Pass new arg to try_window. --- 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;