From: Andreas Schwab Date: Mon, 24 Jul 2000 14:06:45 +0000 (+0000) Subject: Pass Qeql to Fmake_hash_table if TEST is nil. X-Git-Tag: emacs-pretest-21.0.90~2648 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c7015c4fe759fe16a5652ea85bac47f764406f5d;p=emacs.git Pass Qeql to Fmake_hash_table if TEST is nil. --- 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); }