From c7015c4fe759fe16a5652ea85bac47f764406f5d Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 24 Jul 2000 14:06:45 +0000 Subject: [PATCH] Pass Qeql to Fmake_hash_table if TEST is nil. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'.") { Lisp_Object args[2]; args[0] = QCtest; - args[1] = test; + args[1] = NILP (test) ? Qeql : test; return Fmake_hash_table (2, args); } -- 2.39.2