]> code.delx.au - gnu-emacs/commitdiff
* doc/lispref/hash.texi (Defining Hash): Fix typo (tiny change)
authorAri Roponen <ari.roponen@gmail.com>
Thu, 3 Jan 2013 18:38:55 +0000 (10:38 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 3 Jan 2013 18:38:55 +0000 (10:38 -0800)
Fixes: debbugs:13345
doc/lispref/ChangeLog
doc/lispref/hash.texi

index 400290394ba9bca84fa22f160f4f5c8692c5ba03..4deea30005f752bb74e03ef5677c1ebd3dfffb5b 100644 (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):
index 753e71882b03a012876989c9a75cafdae51627a4..655f31ab11447b31dc3fe682d3d2fc75cc35e1bb 100644 (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)))