]> git.eshelyaron.com Git - emacs.git/commitdiff
Pass Qeql to Fmake_hash_table if TEST is nil.
authorAndreas Schwab <schwab@suse.de>
Mon, 24 Jul 2000 14:06:45 +0000 (14:06 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 24 Jul 2000 14:06:45 +0000 (14:06 +0000)
src/fns.c

index 23ce5259bf4e6b8d95ae4a53da8d14afe441460c..6106599a6ba4954c3582c63d04096030300c9b75 100644 (file)
--- 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);
 }