aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/disptab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/disptab.h b/src/disptab.h
index 71f36b6353a..3458105b9a7 100644
--- a/src/disptab.h
+++ b/src/disptab.h
@@ -33,7 +33,7 @@ Boston, MA 02111-1307, USA. */
33#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4]) 33#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
34#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5]) 34#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
35 35
36#define DISP_CHAR_VECTOR(dp, c) ((dp)->contents[c]) 36#define DISP_CHAR_VECTOR(dp, c) ((c) < 0x80 ? (dp)->contents[c] : Qnil)
37 37
38/* Defined in window.c. */ 38/* Defined in window.c. */
39extern struct Lisp_Char_Table *window_display_table (); 39extern struct Lisp_Char_Table *window_display_table ();