aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Liu2016-05-01 11:03:59 +0800
committerLeo Liu2016-05-01 11:03:59 +0800
commit16e5e8e4ea4ad46157fcdeafb16f245124fba375 (patch)
tree87513e6453263f0b73437c61648b40724d9982da
parentb755d988b498b19bd9a70a5dd8c6597ceb14a372 (diff)
downloademacs-16e5e8e4ea4ad46157fcdeafb16f245124fba375.tar.gz
emacs-16e5e8e4ea4ad46157fcdeafb16f245124fba375.zip
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.
-rw-r--r--lisp/isearch.el1
1 files changed, 0 insertions, 1 deletions
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."
972 (setq cursor-sensor-inhibit (delq 'isearch cursor-sensor-inhibit)))) 972 (setq cursor-sensor-inhibit (delq 'isearch cursor-sensor-inhibit))))
973 (setq isearch--current-buffer (current-buffer)) 973 (setq isearch--current-buffer (current-buffer))
974 (make-local-variable 'cursor-sensor-inhibit) 974 (make-local-variable 'cursor-sensor-inhibit)
975 (setq cursor-sensor-inhibit nil)
976 ;; Suspend things like cursor-intangible during Isearch so we can search 975 ;; Suspend things like cursor-intangible during Isearch so we can search
977 ;; even within intangible text. 976 ;; even within intangible text.
978 (push 'isearch cursor-sensor-inhibit)) 977 (push 'isearch cursor-sensor-inhibit))