diff src/fns.c @ 30417:d691cbc2270d

Pass Qeql to Fmake_hash_table if TEST is nil.
author Andreas Schwab <schwab@suse.de>
date Mon, 24 Jul 2000 14:06:45 +0000
parents 4c2d8e4d00e0
children e26deb1d147a
line wrap: on
line diff
--- a/src/fns.c	Mon Jul 24 13:39:05 2000 +0000
+++ b/src/fns.c	Mon Jul 24 14:06:45 2000 +0000
@@ -4617,7 +4617,7 @@
 {
   Lisp_Object args[2];
   args[0] = QCtest;
-  args[1] = test;
+  args[1] = NILP (test) ? Qeql : test;
   return Fmake_hash_table (2, args);
 }