diff options
| author | Richard M. Stallman | 2005-08-09 12:01:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-08-09 12:01:28 +0000 |
| commit | 848c29348be7a4c04d4e62ac99a2ebaaca3ffe02 (patch) | |
| tree | 9503a4b5cf9da98ceb9f3eda04b6be1f386dabcf | |
| parent | 64230f2d7117c81b69fbb65bd8495166409710b3 (diff) | |
| download | emacs-848c29348be7a4c04d4e62ac99a2ebaaca3ffe02.tar.gz emacs-848c29348be7a4c04d4e62ac99a2ebaaca3ffe02.zip | |
(Defining Hash): Delete stray paren in example.
| -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 |