aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-03-03 12:28:24 +0000
committerEli Zaretskii2006-03-03 12:28:24 +0000
commit4a2c4459285d0b726a0b1bc25317d4695c99c852 (patch)
tree79b32e19a46bb4a829161170ca875a8a1bfdb6f3
parent33709261ef513e4f4b21bd7480bbc502963d0c56 (diff)
downloademacs-4a2c4459285d0b726a0b1bc25317d4695c99c852.tar.gz
emacs-4a2c4459285d0b726a0b1bc25317d4695c99c852.zip
(flyspell-process-localwords): Be case-sensitive.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/flyspell.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4eabd34743d..9a539543947 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
2
3 textmodes/flyspell.el (flyspell-process-localwords): Be
4 case-sensitive.
5
12006-03-03 Martin Rudalics <rudalics@gmx.at> 62006-03-03 Martin Rudalics <rudalics@gmx.at>
2 7
3 * cus-edit.el (custom-quote): Remove function, since it has been 8 * cus-edit.el (custom-quote): Remove function, since it has been
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index 35bf8d46100..96862b9c671 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -1410,6 +1410,7 @@ The buffer to mark them in is `flyspell-large-region-buffer'."
1410;;*---------------------------------------------------------------------*/ 1410;;*---------------------------------------------------------------------*/
1411(defun flyspell-process-localwords (misspellings-buffer) 1411(defun flyspell-process-localwords (misspellings-buffer)
1412 (let (localwords 1412 (let (localwords
1413 (case-fold-search nil)
1413 (ispell-casechars (ispell-get-casechars))) 1414 (ispell-casechars (ispell-get-casechars)))
1414 ;; Get localwords from the original buffer 1415 ;; Get localwords from the original buffer
1415 (save-excursion 1416 (save-excursion