1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 02:31:03 -08:00

(handle_stop): Move some code out of loop.

This commit is contained in:
Richard M. Stallman 2007-11-03 01:50:31 +00:00
parent d7a2fd422e
commit d85b2f1e85
2 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,7 @@
2007-11-03 Richard Stallman <rms@gnu.org>
* xdisp.c (handle_stop): Move some code out of loop.
2007-11-01 Johan Bockg,Ae(Brd <bojohan@gnu.org>
* macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):

View file

@ -3073,16 +3073,18 @@ handle_stop (it)
if (it->method == GET_FROM_DISPLAY_VECTOR)
handle_overlay_change_p = 0;
/* Handle overlay changes. */
/* Handle overlay changes.
This sets HANDLED to HANDLED_RECOMPUTE_PROPS
if it finds overlays. */
if (handle_overlay_change_p)
handled = handle_overlay_change (it);
/* Determine where to stop next. */
if (handled == HANDLED_NORMALLY)
compute_stop_pos (it);
}
}
while (handled == HANDLED_RECOMPUTE_PROPS);
/* Determine where to stop next. */
if (handled == HANDLED_NORMALLY)
compute_stop_pos (it);
}