aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2014-02-20 00:25:12 -0800
committerGlenn Morris2014-02-20 00:25:12 -0800
commit3242f74a7f49661348ee8f76293ed9d445524c4d (patch)
tree1040279dd7404098259d4d1e27aafb15e26d892e /doc
parent4d49cc6547d9215da503bd84aadf946e8f2582be (diff)
downloademacs-3242f74a7f49661348ee8f76293ed9d445524c4d.tar.gz
emacs-3242f74a7f49661348ee8f76293ed9d445524c4d.zip
Rework previous doc/emacs change
* doc/emacs/search.texi (Special Isearch): Mention invisible text. * doc/emacs/text.texi (Outline Visibility): Mention `M-s i' in isearch.
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog1
-rw-r--r--doc/emacs/search.texi10
-rw-r--r--doc/emacs/text.texi11
3 files changed, 11 insertions, 11 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 6255f85ff09..6035a05b149 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,6 +1,7 @@
12014-02-20 Glenn Morris <rgm@gnu.org> 12014-02-20 Glenn Morris <rgm@gnu.org>
2 2
3 * search.texi (Special Isearch): Mention invisible text. 3 * search.texi (Special Isearch): Mention invisible text.
4 * text.texi (Outline Visibility): Mention `M-s i' in isearch.
4 5
52014-02-18 Glenn Morris <rgm@gnu.org> 62014-02-18 Glenn Morris <rgm@gnu.org>
6 7
diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi
index 057811ac55c..6fa9a33692a 100644
--- a/doc/emacs/search.texi
+++ b/doc/emacs/search.texi
@@ -247,14 +247,8 @@ have this effect. @xref{Search Case}.
247@cindex invisible text, searching for 247@cindex invisible text, searching for
248@kindex M-s i @r{(Incremental search)} 248@kindex M-s i @r{(Incremental search)}
249@findex isearch-toggle-invisible 249@findex isearch-toggle-invisible
250@vindex search-invisible 250 To toggle whether or not invisible text is searched, type
251 Some Emacs modes hide certain text by making it invisible. For 251@kbd{M-s i} (@code{isearch-toggle-invisible}). @xref{Outline Search}.
252example, Outline major mode (@pxref{Outline Mode}). By default,
253incremental search will search for matches in text hidden by Outline
254mode (and some other modes), and make the text visible if it finds a match.
255To toggle whether or not invisible text is searched, type
256@kbd{M-s i} (@code{isearch-toggle-invisible}). To change the default
257for future searches, customize the option @code{search-invisible}.
258 252
259 To search for a newline character, type @kbd{C-j}. 253 To search for a newline character, type @kbd{C-j}.
260 254
diff --git a/doc/emacs/text.texi b/doc/emacs/text.texi
index 12383ec0f28..68523888f6d 100644
--- a/doc/emacs/text.texi
+++ b/doc/emacs/text.texi
@@ -1124,12 +1124,17 @@ though these are technically body lines). @kbd{C-c C-a}
1124numeric argument @var{n}, it hides everything except the top @var{n} 1124numeric argument @var{n}, it hides everything except the top @var{n}
1125levels of heading lines. 1125levels of heading lines.
1126 1126
1127@anchor{Outline Search}
1127@findex reveal-mode 1128@findex reveal-mode
1129@vindex search-invisible
1128 When incremental search finds text that is hidden by Outline mode, 1130 When incremental search finds text that is hidden by Outline mode,
1129it makes that part of the buffer visible. If you exit the search at 1131it makes that part of the buffer visible. If you exit the search at
1130that position, the text remains visible. You can also automatically 1132that position, the text remains visible. To toggle whether or not
1131make text visible as you navigate in it by using Reveal mode (@kbd{M-x 1133an active incremental search can match hidden text, type @kbd{M-s i}.
1132reveal-mode}), a buffer-local minor mode. 1134To change the default for future searches, customize the option
1135@code{search-invisible}. You can also automatically make text visible
1136as you navigate in it by using Reveal mode (@kbd{M-x reveal-mode}), a
1137buffer-local minor mode.
1133 1138
1134@node Outline Views 1139@node Outline Views
1135@subsection Viewing One Outline in Multiple Views 1140@subsection Viewing One Outline in Multiple Views