comparison src/glyphs.h @ 456:e7ef97881643 r21-2-43

Import from CVS: tag r21-2-43
author cvs
date Mon, 13 Aug 2007 11:41:24 +0200
parents 3d3049ae1304
children 183866b06e0b
comparison
equal deleted inserted replaced
455:5b97c1cd6ed0 456:e7ef97881643
403 int allowed; 403 int allowed;
404 Lisp_Object attachee; /* face or glyph this is attached to, or nil */ 404 Lisp_Object attachee; /* face or glyph this is attached to, or nil */
405 Lisp_Object attachee_property;/* property of that face or glyph */ 405 Lisp_Object attachee_property;/* property of that face or glyph */
406 }; 406 };
407 407
408 #define IMAGE_SPECIFIER_DATA(g) (SPECIFIER_TYPE_DATA (g, image)) 408 #define IMAGE_SPECIFIER_DATA(g) SPECIFIER_TYPE_DATA (g, image)
409 #define IMAGE_SPECIFIER_ALLOWED(g) (IMAGE_SPECIFIER_DATA (g)->allowed) 409 #define IMAGE_SPECIFIER_ALLOWED(g) (IMAGE_SPECIFIER_DATA (g)->allowed)
410 #define IMAGE_SPECIFIER_ATTACHEE(g) (IMAGE_SPECIFIER_DATA (g)->attachee) 410 #define IMAGE_SPECIFIER_ATTACHEE(g) (IMAGE_SPECIFIER_DATA (g)->attachee)
411 #define IMAGE_SPECIFIER_ATTACHEE_PROPERTY(g) \ 411 #define IMAGE_SPECIFIER_ATTACHEE_PROPERTY(g) \
412 (IMAGE_SPECIFIER_DATA (g)->attachee_property) 412 (IMAGE_SPECIFIER_DATA (g)->attachee_property)
413 413