1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00

Improve documentation of 'replace-character-fold'

* lisp/replace.el (replace-character-fold): Clarify which commands
are affected by this variable.
This commit is contained in:
Eli Zaretskii 2015-11-27 22:11:59 +02:00
parent ab10df6097
commit 88050ec3e4

View File

@ -34,9 +34,11 @@
:group 'matching)
(defcustom replace-character-fold nil
"Non-nil means `query-replace' should do character folding in matches.
"Non-nil means replacement commands should do character folding in matches.
This means, for instance, that \\=' will match a large variety of
unicode quotes."
unicode quotes.
This variable affects `query-replace' and `replace-string', but not
`replace-regexp'."
:type 'boolean
:group 'matching
:version "25.1")