aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index a0f02d518b7..ed6e2b34e77 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -1743,7 +1743,7 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
1743 1743
1744 /* h->count is a faster approximation for HASH_TABLE_SIZE (h) 1744 /* h->count is a faster approximation for HASH_TABLE_SIZE (h)
1745 here. */ 1745 here. */
1746 if (h->count <= 5 && !h->test.cmpfn) 1746 if (h->count <= 5 && !h->test->cmpfn)
1747 { /* Do a linear search if there are not many cases 1747 { /* Do a linear search if there are not many cases
1748 FIXME: 5 is arbitrarily chosen. */ 1748 FIXME: 5 is arbitrarily chosen. */
1749 for (i = h->count; 0 <= --i; ) 1749 for (i = h->count; 0 <= --i; )