diff options
| author | Andreas Schwab | 2000-07-24 14:06:45 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2000-07-24 14:06:45 +0000 |
| commit | c7015c4fe759fe16a5652ea85bac47f764406f5d (patch) | |
| tree | 19886463bb5b923f15ca67d9a58796802b265c71 /src | |
| parent | bc66a9a99a20699cbdea4535df9daca5e0947283 (diff) | |
| download | emacs-c7015c4fe759fe16a5652ea85bac47f764406f5d.tar.gz emacs-c7015c4fe759fe16a5652ea85bac47f764406f5d.zip | |
Pass Qeql to Fmake_hash_table if TEST is nil.
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 | ||