diff options
| author | Glenn Morris | 2014-02-20 00:14:20 -0800 |
|---|---|---|
| committer | Glenn Morris | 2014-02-20 00:14:20 -0800 |
| commit | 4d49cc6547d9215da503bd84aadf946e8f2582be (patch) | |
| tree | bc52a1a04f4ed38bd4b3f0069f1d7847a48ebf0d /lisp | |
| parent | 189e70077d1c088d4892a1377da2c4da156867b3 (diff) | |
| download | emacs-4d49cc6547d9215da503bd84aadf946e8f2582be.tar.gz emacs-4d49cc6547d9215da503bd84aadf946e8f2582be.zip | |
Some doc for search-invisible
* doc/emacs/search.texi (Special Isearch): Mention invisible text.
* lisp/isearch.el (search-invisible): Doc fix.
* etc/NEWS: Related edit.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/isearch.el | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 833c089f107..9b6b370c452 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-02-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * isearch.el (search-invisible): Doc fix. | ||
| 4 | |||
| 1 | 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change) | 5 | 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change) |
| 2 | 6 | ||
| 3 | * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output | 7 | * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output |
diff --git a/lisp/isearch.el b/lisp/isearch.el index e4611c29f65..a158c96c06d 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -137,6 +137,12 @@ When the value is `open', if the text matched is made invisible by | |||
| 137 | an overlay having an `invisible' property and that overlay has a property | 137 | an overlay having an `invisible' property and that overlay has a property |
| 138 | `isearch-open-invisible', then incremental search will show the contents. | 138 | `isearch-open-invisible', then incremental search will show the contents. |
| 139 | \(This applies when using `outline.el' and `hideshow.el'.) | 139 | \(This applies when using `outline.el' and `hideshow.el'.) |
| 140 | |||
| 141 | To temporarily change the value for an active incremental search, | ||
| 142 | use \\<isearch-mode-map>\\[isearch-toggle-invisible]. | ||
| 143 | |||
| 144 | See also the related option `isearch-hide-immediately'. | ||
| 145 | |||
| 140 | See also `reveal-mode' if you want overlays to automatically be opened | 146 | See also `reveal-mode' if you want overlays to automatically be opened |
| 141 | whenever point is in one of them." | 147 | whenever point is in one of them." |
| 142 | :type '(choice (const :tag "Match hidden text" t) | 148 | :type '(choice (const :tag "Match hidden text" t) |