aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 7f83269c88e..9b533f528ed 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -641,7 +641,7 @@ struct Lisp_Vector
641 and 8-bit Europeans characters. For these characters, do not check 641 and 8-bit Europeans characters. For these characters, do not check
642 validity of CT. Do not follow parent. */ 642 validity of CT. Do not follow parent. */
643#define CHAR_TABLE_REF(CT, IDX) \ 643#define CHAR_TABLE_REF(CT, IDX) \
644 ((IDX) < CHAR_TABLE_SINGLE_BYTE_SLOTS \ 644 ((IDX) >= 0 && (IDX) < CHAR_TABLE_SINGLE_BYTE_SLOTS \
645 ? (!NILP (XCHAR_TABLE (CT)->contents[IDX]) \ 645 ? (!NILP (XCHAR_TABLE (CT)->contents[IDX]) \
646 ? XCHAR_TABLE (CT)->contents[IDX] \ 646 ? XCHAR_TABLE (CT)->contents[IDX] \
647 : XCHAR_TABLE (CT)->defalt) \ 647 : XCHAR_TABLE (CT)->defalt) \