diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2016-02-10 07:44:16 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2016-02-10 07:45:02 +0000 |
commit | 12c50e82c9b432b2fc31f8fb2215f43ceea80822 (patch) | |
tree | f4ef1170bec0eb665a83aa19116249f9644582a0 /lisp/isearch.el | |
parent | 10b8ed27ec91ff52f93eb0297dcc3abb214931aa (diff) | |
download | emacs-12c50e82c9b432b2fc31f8fb2215f43ceea80822.tar.gz emacs-12c50e82c9b432b2fc31f8fb2215f43ceea80822.tar.bz2 emacs-12c50e82c9b432b2fc31f8fb2215f43ceea80822.zip |
Backport: * lisp/isearch.el: Turn char-folding off by default
(search-default-mode): Set default value to nil.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 2efa4c7e8ef..98f55a982c3 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -224,7 +224,7 @@ Default value, nil, means edit the string instead." (autoload 'character-fold-to-regexp "character-fold") -(defcustom search-default-mode #'character-fold-to-regexp +(defcustom search-default-mode nil "Default mode to use when starting isearch. Value is nil, t, or a function. |