tuned. It means we consider 100 buffer positions examined by
the above call roughly equivalent to the display engine
iterating over a single buffer position. */
- if (*disp_pos > charpos)
+ if (max_redisplay_ticks > 0 && *disp_pos > charpos)
update_redisplay_ticks ((*disp_pos - charpos) / 100 + 1, w);
}
SET_TEXT_POS (pos, charpos + *nchars, bytepos + *ch_len);
*disp_pos = compute_display_string_pos (&pos, string, w, frame_window_p,
disp_prop);
- if (*disp_pos > charpos + *nchars)
+ if (max_redisplay_ticks > 0 && *disp_pos > charpos + *nchars)
update_redisplay_ticks ((*disp_pos - charpos - *nchars) / 100 + 1, w);
}
roughly equivalent to the display engine iterating over a single
buffer position. */
ptrdiff_t nexamined = bidi_it->charpos - pos + nsearch_for_strong;
- if (nexamined > 0)
+ if (max_redisplay_ticks > 0 && nexamined > 0)
update_redisplay_ticks (nexamined / 50, bidi_it->w);
}
means we consider 20 buffer positions examined by this function
roughly equivalent to the display engine iterating over a single
buffer position. */
- if (n > 0)
+ if (max_redisplay_ticks > 0 && n > 0)
update_redisplay_ticks (n / 20 + 1, bidi_it->w);
return retval;
}
tuned. It means we consider 50 buffer positions examined by
the above call roughly equivalent to the display engine
iterating over a single buffer position. */
- if (bidi_it->charpos > pos0)
+ if (max_redisplay_ticks > 0 && bidi_it->charpos > pos0)
update_redisplay_ticks ((bidi_it->charpos - pos0) / 50 + 1, bidi_it->w);
}
}
means we consider 50 buffer positions examined by this function
roughly equivalent to the display engine iterating over a single
buffer position. */
- if (nchars > 0)
+ if (max_redisplay_ticks > 0 && nchars > 0)
update_redisplay_ticks (nchars / 50 + 1, NULL);
return dcnt;
}
unbind_to (count, Qnil);
SAFE_FREE ();
- if (nchars > 0)
+ if (max_redisplay_ticks > 0 && nchars > 0)
update_redisplay_ticks (nchars / 50 + 1, NULL);
return -1; /* Failure to match. */
means we consider 10 buffer positions examined by this function
roughly equivalent to the display engine iterating over a single
buffer position. */
- if (from > started_from)
+ if (max_redisplay_ticks > 0 && from > started_from)
update_redisplay_ticks ((from - started_from) / 10 + 1, NULL);
}
it->cmp_it.id = -1;
- update_redisplay_ticks (0, w);
+ if (max_redisplay_ticks > 0)
+ update_redisplay_ticks (0, w);
/* Extra space between lines (on window systems only). */
if (base_face_id == DEFAULT_FACE_ID
set_iterator_to_next (struct it *it, bool reseat_p)
{
- update_redisplay_ticks (1, it->w);
+ if (max_redisplay_ticks > 0)
+ update_redisplay_ticks (1, it->w);
switch (it->method)
{
/* We're done with this redisplay cycle, so reset the tick count in
preparation for the next redisplay cycle. */
- update_redisplay_ticks (0, NULL);
+ if (max_redisplay_ticks > 0)
+ update_redisplay_ticks (0, NULL);
unbind_to (count, Qnil);
RESUME_POLLING;