diff options
| author | Eli Zaretskii | 2006-03-11 15:07:32 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-03-11 15:07:32 +0000 |
| commit | 55faab0a19c18ed34bd85a3f89c7bc1acf12c47b (patch) | |
| tree | 9bef2385ecd1e0788f9de1ce154061bc59dfb9e7 | |
| parent | 3bb69bbdbab33bb301d7b60271c0cdb410485206 (diff) | |
| download | emacs-55faab0a19c18ed34bd85a3f89c7bc1acf12c47b.tar.gz emacs-55faab0a19c18ed34bd85a3f89c7bc1acf12c47b.zip | |
(flyspell-external-point-words, flyspell-process-localwords): Fix last changes.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index aa50978f5e8..7bc82634547 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-external-point-words) | ||
| 4 | (flyspell-process-localwords): Fix last changes. | ||
| 5 | |||
| 1 | 2006-03-11 Eli Zaretskii <eliz@gnu.org> | 6 | 2006-03-11 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * calendar/holidays.el (list-holidays): Doc fix. | 8 | * calendar/holidays.el (list-holidays): Doc fix. |
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 96862b9c671..54b67a258a6 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -1323,7 +1323,7 @@ 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 | case-fold-search) |
| 1327 | (with-current-buffer flyspell-external-ispell-buffer | 1327 | (with-current-buffer flyspell-external-ispell-buffer |
| 1328 | (goto-char (point-min)) | 1328 | (goto-char (point-min)) |
| 1329 | ;; Loop over incorrect words, in the order they were reported, | 1329 | ;; Loop over incorrect words, in the order they were reported, |
| @@ -1409,8 +1409,7 @@ The buffer to mark them in is `flyspell-large-region-buffer'." | |||
| 1409 | ;;* declared correct. */ | 1409 | ;;* declared correct. */ |
| 1410 | ;;*---------------------------------------------------------------------*/ | 1410 | ;;*---------------------------------------------------------------------*/ |
| 1411 | (defun flyspell-process-localwords (misspellings-buffer) | 1411 | (defun flyspell-process-localwords (misspellings-buffer) |
| 1412 | (let (localwords | 1412 | (let (localwords case-fold-search |
| 1413 | (case-fold-search nil) | ||
| 1414 | (ispell-casechars (ispell-get-casechars))) | 1413 | (ispell-casechars (ispell-get-casechars))) |
| 1415 | ;; Get localwords from the original buffer | 1414 | ;; Get localwords from the original buffer |
| 1416 | (save-excursion | 1415 | (save-excursion |