1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 06:50:46 -08:00

(Defining Hash): Delete stray paren in example.

This commit is contained in:
Richard M. Stallman 2005-08-09 12:01:28 +00:00
parent 64230f2d71
commit 848c29348b

View file

@ -281,8 +281,8 @@ compared case-insensitively.
(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