* src/bytecode.c (exec_byte_code): Don't check that the hash code is
not nil when linear scanning the jump table. Hash tables for are
declared with :size as the exact number of cases, so each entry i
should have a hash code. When BYTE_CODE_SAFE, do it as a sanity
check.
FIXME: 5 is arbitrarily chosen. */
for (i = 0; i < HASH_TABLE_SIZE (h); i++)
{
- if (!NILP (HASH_HASH (h, i)) &&
- (EQ (v1, HASH_KEY (h, i)) ||
+#ifdef BYTE_CODE_SAFE
+ eassert (!NILP (HASH_HASH (h, i)));
+#endif
+ if ((EQ (v1, HASH_KEY (h, i)) ||
(h->test.cmpfn &&
h->test.cmpfn (&h->test, v1, HASH_KEY (h, i)))))
{