aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index 71241dc9521..5d46507dc77 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2302,7 +2302,7 @@ read1 (readcharfun, pch, first_in_list)
2302 { 2302 {
2303 Lisp_Object tmp; 2303 Lisp_Object tmp;
2304 tmp = read_vector (readcharfun, 0); 2304 tmp = read_vector (readcharfun, 0);
2305 if (XVECTOR (tmp)->size < VECSIZE (struct Lisp_Char_Table)) 2305 if (XVECTOR (tmp)->size < CHAR_TABLE_STANDARD_SLOTS)
2306 error ("Invalid size char-table"); 2306 error ("Invalid size char-table");
2307 XSETCHAR_TABLE (tmp, XCHAR_TABLE (tmp)); 2307 XSETCHAR_TABLE (tmp, XCHAR_TABLE (tmp));
2308 return tmp; 2308 return tmp;