# HG changeset patch # User Richard M. Stallman # Date 1123588888 0 # Node ID 0021965e29a21cbe160c68427dbb960ef78a918b # Parent c171f553d289aae79b08da6f1bb7b23a1a93318b (Defining Hash): Delete stray paren in example. diff -r c171f553d289 -r 0021965e29a2 lispref/hash.texi --- 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