diff options
| author | Ari Roponen | 2013-01-03 10:38:55 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-01-03 10:38:55 -0800 |
| commit | 4217dc299c3b466e674271f8eb8a0a88e5b3795f (patch) | |
| tree | 4e7733cd51577f2f83407abb03fa4cffe230e9d7 | |
| parent | d2be4dccb9088cc7e27aeb6b01ef23ed20da2447 (diff) | |
| download | emacs-4217dc299c3b466e674271f8eb8a0a88e5b3795f.tar.gz emacs-4217dc299c3b466e674271f8eb8a0a88e5b3795f.zip | |
* doc/lispref/hash.texi (Defining Hash): Fix typo (tiny change)
Fixes: debbugs:13345
| -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 | ||