From: Leo Liu Date: Sun, 1 May 2016 03:03:59 +0000 (+0800) Subject: Fix last change to isearch-update (bug#23406) X-Git-Tag: emacs-25.0.94~123 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16e5e8e4ea4ad46157fcdeafb16f245124fba375;p=emacs.git Fix last change to isearch-update (bug#23406) * lisp/isearch.el (isearch-update): Remove (setq cursor-sensor-inhibit nil) ie remove the original (unless (boundp 'cursor-sensor-inhibit) ...) form. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 17b5ef14cb6..218c18a666e 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -972,7 +972,6 @@ The last thing is to trigger a new round of lazy highlighting." (setq cursor-sensor-inhibit (delq 'isearch cursor-sensor-inhibit)))) (setq isearch--current-buffer (current-buffer)) (make-local-variable 'cursor-sensor-inhibit) - (setq cursor-sensor-inhibit nil) ;; Suspend things like cursor-intangible during Isearch so we can search ;; even within intangible text. (push 'isearch cursor-sensor-inhibit))