From: Juri Linkov Date: Sun, 6 Dec 2015 00:20:12 +0000 (+0200) Subject: * lisp/textmodes/ispell.el (ispell-highlight-spelling-error-overlay): X-Git-Tag: emacs-25.0.90~528 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2537dd90bd47549ac774175a92d8b88fa0c69d67;p=emacs.git * lisp/textmodes/ispell.el (ispell-highlight-spelling-error-overlay): Let-bind isearch-regexp-function to nil. (Bug#22097) --- diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index fe27f0f158c..aa51446d6b4 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -2809,6 +2809,7 @@ The variable `ispell-highlight-face' selects the face to use for highlighting." (regexp-quote (buffer-substring-no-properties start end)) "\\b")) (isearch-regexp t) + (isearch-regexp-function nil) (isearch-case-fold-search nil) (isearch-forward t) (isearch-other-end start)