* doc/lispref/hash.texi (Defining Hash): Fix typo (tiny change)

Fixes: debbugs:13345
This commit is contained in:
Ari Roponen 2013-01-03 10:38:55 -08:00 committed by Glenn Morris
parent d2be4dccb9
commit 4217dc299c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-01-03 Ari Roponen <ari.roponen@gmail.com> (tiny change)
* hash.texi (Defining Hash): Fix typo. (Bug#13345)
2013-01-03 Glenn Morris <rgm@gnu.org>
* processes.texi (System Processes):

View file

@ -293,7 +293,7 @@ compared case-insensitively.
@example
(defun case-fold-string= (a b)
(compare-strings a nil nil b nil nil t))
(eq t (compare-strings a nil nil b nil nil t)))
(defun case-fold-string-hash (a)
(sxhash (upcase a)))