]> code.delx.au - gnu-emacs/blobdiff - doc/lispref/hash.texi
* doc/lispref/hash.texi (Defining Hash): Fix typo (tiny change)
[gnu-emacs] / doc / lispref / hash.texi
index bb7a60e2e2df9c0f09d5d07e2a34074c4864ece5..655f31ab11447b31dc3fe682d3d2fc75cc35e1bb 100644 (file)
@@ -1,6 +1,6 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1999, 2001-2012 Free Software Foundation, Inc.
+@c Copyright (C) 1999, 2001-2013 Free Software Foundation, Inc.
 @c See the file elisp.texi for copying conditions.
 @node Hash Tables
 @chapter Hash Tables
@@ -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)))