comparison src/dispextern.h @ 107635:a5eeeb631d8a

Merge from mainline.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 20 Feb 2010 05:25:57 -0500
parents c5f9e4613394 f32d789c9aab
children d65c199e8bdd
comparison
equal deleted inserted replaced
107634:199cad45d7ba 107635:a5eeeb631d8a
2383 #define ITERATOR_AT_END_OF_LINE_P(IT) \ 2383 #define ITERATOR_AT_END_OF_LINE_P(IT) \
2384 ((IT)->what == IT_CHARACTER \ 2384 ((IT)->what == IT_CHARACTER \
2385 && ((IT)->c == '\n' \ 2385 && ((IT)->c == '\n' \
2386 || ((IT)->c == '\r' && (IT)->selective))) 2386 || ((IT)->c == '\r' && (IT)->selective)))
2387 2387
2388 /* Call produce_glyphs or produce_glyphs_hook, if set. Shortcut to 2388 /* Call produce_glyphs or FRAME_RIF->produce_glyphs, if set. Shortcut
2389 avoid the function call overhead. */ 2389 to avoid the function call overhead. */
2390 2390
2391 #define PRODUCE_GLYPHS(IT) \ 2391 #define PRODUCE_GLYPHS(IT) \
2392 do { \ 2392 do { \
2393 extern int inhibit_free_realized_faces; \ 2393 extern int inhibit_free_realized_faces; \
2394 if (FRAME_RIF ((IT)->f) != NULL) \ 2394 if (FRAME_RIF ((IT)->f) != NULL) \