Mercurial > hg > xemacs-beta
comparison src/glyphs.h @ 94:1040fe1366ac xemacs-20-0f2
Import from CVS: tag xemacs-20-0f2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:12:09 +0200 |
parents | 131b0175ea99 |
children | cca96a509cfe |
comparison
equal
deleted
inserted
replaced
93:486ff617c2a1 | 94:1040fe1366ac |
---|---|
546 /***************************************************************************** | 546 /***************************************************************************** |
547 * Display Tables * | 547 * Display Tables * |
548 *****************************************************************************/ | 548 *****************************************************************************/ |
549 | 549 |
550 #define DISP_TABLE_SIZE 256 | 550 #define DISP_TABLE_SIZE 256 |
551 #define DISP_CHAR_ENTRY(dp, c) ((dp)->contents[c]) | 551 #define DISP_CHAR_ENTRY(dp, c) ((c < (dp)->size) ? (dp)->contents[c] : Qnil) |
552 | 552 |
553 struct Lisp_Vector *get_display_table (struct window *, face_index); | 553 struct Lisp_Vector *get_display_table (struct window *, face_index); |
554 | 554 |
555 #endif /* _XEMACS_GLYPHS_H_ */ | 555 #endif /* _XEMACS_GLYPHS_H_ */ |