next_element_from_stretch
};
+#define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
/* Load IT's display element fields with information about the next
display element from the current position of IT. Value is zero if
int success_p;
get_next:
- success_p = (*get_next_element[it->method]) (it);
+ success_p = GET_NEXT_DISPLAY_ELEMENT (it);
if (it->what == IT_CHARACTER)
{
/* Since a handler may have changed IT->method, we must
recurse here. */
- return get_next_display_element (it);
+ return GET_NEXT_DISPLAY_ELEMENT (it);
}
if (it->current.overlay_string_index >= 0)
it->face_before_selective_p = 1;
}
- return get_next_display_element (it);
+ return GET_NEXT_DISPLAY_ELEMENT (it);
}
}
if (overlay_strings_follow_p)
- success_p = get_next_display_element (it);
+ success_p = GET_NEXT_DISPLAY_ELEMENT (it);
else
{
it->what = IT_EOB;
else
{
handle_stop (it);
- return get_next_display_element (it);
+ return GET_NEXT_DISPLAY_ELEMENT (it);
}
}
else