diff options
| author | Eli Zaretskii | 2015-11-27 22:11:59 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-11-27 22:11:59 +0200 |
| commit | 88050ec3e489499ef898c0cb02486795916833e7 (patch) | |
| tree | a2882c17c1fd0367460948f41bff1365a22c0f26 | |
| parent | ab10df6097b20f26259cbf8e542163798274099f (diff) | |
| download | emacs-88050ec3e489499ef898c0cb02486795916833e7.tar.gz emacs-88050ec3e489499ef898c0cb02486795916833e7.zip | |
Improve documentation of 'replace-character-fold'
* lisp/replace.el (replace-character-fold): Clarify which commands
are affected by this variable.
| -rw-r--r-- | lisp/replace.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index a671a98b7a0..b0a14e3f44c 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -34,9 +34,11 @@ | |||
| 34 | :group 'matching) | 34 | :group 'matching) |
| 35 | 35 | ||
| 36 | (defcustom replace-character-fold nil | 36 | (defcustom replace-character-fold nil |
| 37 | "Non-nil means `query-replace' should do character folding in matches. | 37 | "Non-nil means replacement commands should do character folding in matches. |
| 38 | This means, for instance, that \\=' will match a large variety of | 38 | This means, for instance, that \\=' will match a large variety of |
| 39 | unicode quotes." | 39 | unicode quotes. |
| 40 | This variable affects `query-replace' and `replace-string', but not | ||
| 41 | `replace-regexp'." | ||
| 40 | :type 'boolean | 42 | :type 'boolean |
| 41 | :group 'matching | 43 | :group 'matching |
| 42 | :version "25.1") | 44 | :version "25.1") |