diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/hash.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 400290394ba..4deea30005f 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-01-03 Ari Roponen <ari.roponen@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * hash.texi (Defining Hash): Fix typo. (Bug#13345) | ||
| 4 | |||
| 1 | 2013-01-03 Glenn Morris <rgm@gnu.org> | 5 | 2013-01-03 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * processes.texi (System Processes): | 7 | * processes.texi (System Processes): |
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. | |||
| 293 | 293 | ||
| 294 | @example | 294 | @example |
| 295 | (defun case-fold-string= (a b) | 295 | (defun case-fold-string= (a b) |
| 296 | (compare-strings a nil nil b nil nil t)) | 296 | (eq t (compare-strings a nil nil b nil nil t))) |
| 297 | (defun case-fold-string-hash (a) | 297 | (defun case-fold-string-hash (a) |
| 298 | (sxhash (upcase a))) | 298 | (sxhash (upcase a))) |
| 299 | 299 | ||