aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Malabarba2015-10-25 01:52:01 +0100
committerArtur Malabarba2015-10-25 01:11:59 +0000
commit816f78c2e8ec67a1e8c91ad2e9b0b8628e5584bf (patch)
tree60dd0dd838e945446484abe4b2937f9730ba7964
parentf5f18f95d459a4031eda4b7f43a151e12a386338 (diff)
downloademacs-816f78c2e8ec67a1e8c91ad2e9b0b8628e5584bf.tar.gz
emacs-816f78c2e8ec67a1e8c91ad2e9b0b8628e5584bf.zip
* lisp/isearch.el: Make character-fold search the default again
-rw-r--r--lisp/isearch.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 2c031aa582a..3f8ff7a2d39 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -220,7 +220,9 @@ It is nil if none yet.")
220Default value, nil, means edit the string instead." 220Default value, nil, means edit the string instead."
221 :type 'boolean) 221 :type 'boolean)
222 222
223(defcustom search-default-regexp-mode nil 223(autoload 'character-fold-to-regexp "character-fold")
224
225(defcustom search-default-regexp-mode #'character-fold-to-regexp
224 "Default mode to use when starting isearch. 226 "Default mode to use when starting isearch.
225Value is nil, t, or a function. 227Value is nil, t, or a function.
226 228
@@ -842,8 +844,6 @@ See the command `isearch-forward-symbol' for more information."
842;; isearch-forward-regexp isearch-backward-regexp) 844;; isearch-forward-regexp isearch-backward-regexp)
843;; "List of commands for which isearch-mode does not recursive-edit.") 845;; "List of commands for which isearch-mode does not recursive-edit.")
844 846
845(autoload 'character-fold-to-regexp "character-fold")
846
847(defun isearch-mode (forward &optional regexp op-fun recursive-edit regexp-function) 847(defun isearch-mode (forward &optional regexp op-fun recursive-edit regexp-function)
848 "Start Isearch minor mode. 848 "Start Isearch minor mode.
849It is called by the function `isearch-forward' and other related functions. 849It is called by the function `isearch-forward' and other related functions.