diff options
author | Ari Roponen <ari.roponen@gmail.com> | 2013-01-03 10:38:55 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-01-03 10:38:55 -0800 |
commit | 4217dc299c3b466e674271f8eb8a0a88e5b3795f (patch) | |
tree | 4e7733cd51577f2f83407abb03fa4cffe230e9d7 /doc/lispref/hash.texi | |
parent | d2be4dccb9088cc7e27aeb6b01ef23ed20da2447 (diff) | |
download | emacs-4217dc299c3b466e674271f8eb8a0a88e5b3795f.tar.gz |
* doc/lispref/hash.texi (Defining Hash): Fix typo (tiny change)
Fixes: debbugs:13345
Diffstat (limited to 'doc/lispref/hash.texi')
-rw-r--r-- | doc/lispref/hash.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/hash.texi b/doc/lispref/hash.texi index 753e71882b0..655f31ab114 100644 --- a/doc/lispref/hash.texi +++ b/doc/lispref/hash.texi @@ -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))) |