1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

* textmodes/flyspell.el (flyspell-check-region-doublons): Fix last

fix.
This commit is contained in:
Chong Yidong 2006-10-23 13:59:44 +00:00
parent 88efeba65e
commit 081ff0c9bc
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-10-22 martin rudalics <rudalics@gmx.at>
* textmodes/flyspell.el (flyspell-check-region-doublons): Fix last
fix.
2006-10-23 Nick Roberts <nickrob@snap.net.nz>
* bindings.el (mode-line-mode-menu): List global minor modes

View File

@ -1475,7 +1475,7 @@ The buffer to mark them in is `flyspell-large-region-buffer'."
(flyspell-word) ; Make sure current word is checked
(backward-word 1)
(while (and (< (point) end)
(re-search-forward "\\(\\w+\\)\\s-+\\1\\>"
(re-search-forward "\\<\\(\\w+\\)\\>[ \n\t\f]+\\1\\>"
end 'move))
(flyspell-word)
(backward-word 1))