Mercurial > emacs
changeset 107817:8973aee6b80a
xfns.c (Fx_show_tip): Undo last change.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Sat, 10 Apr 2010 19:39:16 +0900 |
parents | 1cba68e0c6f6 |
children | c7670de45d8a |
files | src/ChangeLog src/xfns.c |
diffstat | 2 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Apr 09 19:18:09 2010 -0700 +++ b/src/ChangeLog Sat Apr 10 19:39:16 2010 +0900 @@ -1,3 +1,7 @@ +2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> + + * xfns.c (Fx_show_tip): Undo last change. + 2010-04-09 Jan Djärv <jan.h.d@swipnet.se> * xfns.c (Fx_show_tip): Call try_window in a loop until
--- a/src/xfns.c Fri Apr 09 19:18:09 2010 -0700 +++ b/src/xfns.c Sat Apr 10 19:39:16 2010 +0900 @@ -5225,14 +5225,10 @@ old_buffer = current_buffer; set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer)); current_buffer->truncate_lines = Qnil; - - do { - fonts_changed_p = 0; - 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, 0); - } while (fonts_changed_p); + 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, 0); /* Compute width and height of the tooltip. */ width = height = 0;