aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 23ce5259bf4..6106599a6ba 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4617,7 +4617,7 @@ is `eql'. New tests can be defined with `define-hash-table-test'.")
4617{ 4617{
4618 Lisp_Object args[2]; 4618 Lisp_Object args[2];
4619 args[0] = QCtest; 4619 args[0] = QCtest;
4620 args[1] = test; 4620 args[1] = NILP (test) ? Qeql : test;
4621 return Fmake_hash_table (2, args); 4621 return Fmake_hash_table (2, args);
4622} 4622}
4623 4623