Mercurial > emacs
changeset 64842:0021965e29a2
(Defining Hash): Delete stray paren in example.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 09 Aug 2005 12:01:28 +0000 |
parents | c171f553d289 |
children | 6c4d2fa924e4 |
files | lispref/hash.texi |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/hash.texi Tue Aug 09 12:00:57 2005 +0000 +++ b/lispref/hash.texi Tue Aug 09 12:01:28 2005 +0000 @@ -281,8 +281,8 @@ (defun case-fold-string-hash (a) (sxhash (upcase a))) -(define-hash-table-test 'case-fold 'case-fold-string= - 'case-fold-string-hash)) +(define-hash-table-test 'case-fold + 'case-fold-string= 'case-fold-string-hash) (make-hash-table :test 'case-fold) @end example