summaryrefslogtreecommitdiff
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. */
#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
-#define DISP_CHAR_VECTOR(dp, c) ((dp)->contents[c])
+#define DISP_CHAR_VECTOR(dp, c) ((c) < 0x80 ? (dp)->contents[c] : Qnil)
/* Defined in window.c. */
extern struct Lisp_Char_Table *window_display_table ();