diff options
author | Glenn Morris <rgm@gnu.org> | 2014-02-28 18:48:54 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-02-28 18:48:54 -0800 |
commit | 2501c91259584d30e0cbb3a5be143b60b1204f73 (patch) | |
tree | 61431843f3163a8b6d6925ee6812700b1727b2cc /doc | |
parent | b829360f5052d532a00f4693f9ca6494a348449e (diff) | |
download | emacs-2501c91259584d30e0cbb3a5be143b60b1204f73.tar.gz |
Some doc related to search-invisible and query replace
* doc/emacs/search.texi (Query Replace): Mention search-invisible.
* doc/emacs/text.texi (Outline Visibility): Mention search-invisible
also affects query-replace.
* lisp/isearch.el (search-invisible): Doc fix.
* etc/NEWS: Related markup.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/emacs/ChangeLog | 9 | ||||
-rw-r--r-- | doc/emacs/search.texi | 4 | ||||
-rw-r--r-- | doc/emacs/text.texi | 7 |
3 files changed, 16 insertions, 4 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 39c37c48022..a99ff76ccb5 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog @@ -1,10 +1,17 @@ +2014-03-01 Glenn Morris <rgm@gnu.org> + + * search.texi (Query Replace): Mention search-invisible. + * text.texi (Outline Visibility): Mention search-invisible + also affects query-replace. + 2014-02-28 Xue Fuqiao <xfq@gnu.org> * emacs.texi (Top): * programs.texi (Programs, Prettifying Symbols): Document `prettify-symbols-mode' and `global-prettify-symbols-mode'. - * misc.texi (Saving Emacs Sessions): Document some new desktop user options. + * misc.texi (Saving Emacs Sessions): + Document some new desktop user options. 2014-02-27 Xue Fuqiao <xfq@gnu.org> diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi index 6fa9a33692a..99a05313890 100644 --- a/doc/emacs/search.texi +++ b/doc/emacs/search.texi @@ -1393,6 +1393,10 @@ line. used the minibuffer to read its arguments. @xref{Repetition, C-x ESC ESC}. +@cindex invisible text, and query-replace + The option @code{search-invisible} determines how @code{query-replace} +treats invisible text. @xref{Outline Search}. + @xref{Operating on Files}, for the Dired @kbd{Q} command which performs query replace on selected files. See also @ref{Transforming File Names}, for Dired commands to rename, copy, or link files by diff --git a/doc/emacs/text.texi b/doc/emacs/text.texi index 68523888f6d..9eb8f467883 100644 --- a/doc/emacs/text.texi +++ b/doc/emacs/text.texi @@ -1132,9 +1132,10 @@ it makes that part of the buffer visible. If you exit the search at that position, the text remains visible. To toggle whether or not an active incremental search can match hidden text, type @kbd{M-s i}. To change the default for future searches, customize the option -@code{search-invisible}. You can also automatically make text visible -as you navigate in it by using Reveal mode (@kbd{M-x reveal-mode}), a -buffer-local minor mode. +@code{search-invisible}. (This option also affects how @code{query-replace} +and related functions treat hidden text, @pxref{Query Replace}.) +You can also automatically make text visible as you navigate in it by +using Reveal mode (@kbd{M-x reveal-mode}), a buffer-local minor mode. @node Outline Views @subsection Viewing One Outline in Multiple Views |