diff options
| -rw-r--r-- | lispref/hash.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/hash.texi b/lispref/hash.texi index b8ddd0ee6a4..86a36a57a6e 100644 --- a/lispref/hash.texi +++ b/lispref/hash.texi | |||
| @@ -281,8 +281,8 @@ compared case-insensitively. | |||
| 281 | (defun case-fold-string-hash (a) | 281 | (defun case-fold-string-hash (a) |
| 282 | (sxhash (upcase a))) | 282 | (sxhash (upcase a))) |
| 283 | 283 | ||
| 284 | (define-hash-table-test 'case-fold 'case-fold-string= | 284 | (define-hash-table-test 'case-fold |
| 285 | 'case-fold-string-hash)) | 285 | 'case-fold-string= 'case-fold-string-hash) |
| 286 | 286 | ||
| 287 | (make-hash-table :test 'case-fold) | 287 | (make-hash-table :test 'case-fold) |
| 288 | @end example | 288 | @end example |