Skip to content

Commit

Permalink
* textmodes/flyspell.el (flyspell-check-region-doublons): Fix last
Browse files Browse the repository at this point in the history
	fix.
  • Loading branch information
Chong Yidong committed Oct 23, 2006
1 parent 0c97c2a commit 3c8d386
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions lisp/ChangeLog
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lisp/textmodes/flyspell.el
Expand Up @@ -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))
Expand Down

0 comments on commit 3c8d386

Please sign in to comment.