inhibit-point-motion-hooks to avoid looping due to intangibile
text.
+2006-10-18 Martin Rudalics <rudalics@gmx.at>
+
+ * textmodes/flyspell.el (flyspell-word-search-backward): Set
+ inhibit-point-motion-hooks to avoid looping due to intangibile
+ text.
+
2006-10-16 Kim F. Storm <storm@cua.dk>
* ido.el (ido-reread-directory): Work in `dir' mode too.
(defun flyspell-word-search-backward (word bound)
(save-excursion
(let ((r '())
+ (inhibit-point-motion-hooks t)
p)
(while (and (not r) (setq p (search-backward word bound t)))
(let ((lw (flyspell-get-word '())))
(defun flyspell-word-search-forward (word bound)
(save-excursion
(let ((r '())
+ (inhibit-point-motion-hooks t)
p)
(while (and (not r) (setq p (search-forward word bound t)))
(let ((lw (flyspell-get-word '())))