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 e87dba53128..47512fd3197 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3276,7 +3276,7 @@ oblookup (obarray, ptr, size, size_byte)
3276 hash %= obsize; 3276 hash %= obsize;
3277 bucket = XVECTOR (obarray)->contents[hash]; 3277 bucket = XVECTOR (obarray)->contents[hash];
3278 oblookup_last_bucket_number = hash; 3278 oblookup_last_bucket_number = hash;
3279 if (XFASTINT (bucket) == 0) 3279 if (EQ (bucket, make_number (0)))
3280 ; 3280 ;
3281 else if (!SYMBOLP (bucket)) 3281 else if (!SYMBOLP (bucket))
3282 error ("Bad data in guts of obarray"); /* Like CADR error message */ 3282 error ("Bad data in guts of obarray"); /* Like CADR error message */