aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorEli Zaretskii2006-03-03 12:28:24 +0000
committerEli Zaretskii2006-03-03 12:28:24 +0000
commit4a2c4459285d0b726a0b1bc25317d4695c99c852 (patch)
tree79b32e19a46bb4a829161170ca875a8a1bfdb6f3 /lisp/textmodes
parent33709261ef513e4f4b21bd7480bbc502963d0c56 (diff)
downloademacs-4a2c4459285d0b726a0b1bc25317d4695c99c852.tar.gz
emacs-4a2c4459285d0b726a0b1bc25317d4695c99c852.zip
(flyspell-process-localwords): Be case-sensitive.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/flyspell.el1
1 files changed, 1 insertions, 0 deletions
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