diff options
| author | Eli Zaretskii | 2006-03-03 11:49:22 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-03-03 11:49:22 +0000 |
| commit | ee65a1327b4bcca71e79a4de0505b4169d8b06dd (patch) | |
| tree | aa41fc278c6fd3b4f78b1279aab5c47afbe26537 | |
| parent | 019ed9c702a4456596be97d0b6e8e29be71f7181 (diff) | |
| download | emacs-ee65a1327b4bcca71e79a4de0505b4169d8b06dd.tar.gz emacs-ee65a1327b4bcca71e79a4de0505b4169d8b06dd.zip | |
(flyspell-external-point-words): Be case-sensitive.
| -rw-r--r-- | lisp/textmodes/flyspell.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 16c50397824..35bf8d46100 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -1322,7 +1322,8 @@ The list of incorrect words should be in `flyspell-external-ispell-buffer'. | |||
| 1322 | The buffer to mark them in is `flyspell-large-region-buffer'." | 1322 | The buffer to mark them in is `flyspell-large-region-buffer'." |
| 1323 | (let (words-not-found | 1323 | (let (words-not-found |
| 1324 | (ispell-otherchars (ispell-get-otherchars)) | 1324 | (ispell-otherchars (ispell-get-otherchars)) |
| 1325 | (buffer-scan-pos flyspell-large-region-beg)) | 1325 | (buffer-scan-pos flyspell-large-region-beg) |
| 1326 | (case-fold-search nil)) | ||
| 1326 | (with-current-buffer flyspell-external-ispell-buffer | 1327 | (with-current-buffer flyspell-external-ispell-buffer |
| 1327 | (goto-char (point-min)) | 1328 | (goto-char (point-min)) |
| 1328 | ;; Loop over incorrect words, in the order they were reported, | 1329 | ;; Loop over incorrect words, in the order they were reported, |