diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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 | ||