aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2014-02-07 22:56:18 -0800
committerLars Ingebrigtsen2014-02-07 22:56:18 -0800
commit9165ffc0f0ff73372ddb4490a7dd85cdc9a2c7e5 (patch)
tree60c4b89815f6f0a590064741bd21839c06de0f34
parent74750d5511fb55f30ddf9a188470d85aa45a1732 (diff)
downloademacs-9165ffc0f0ff73372ddb4490a7dd85cdc9a2c7e5.tar.gz
emacs-9165ffc0f0ff73372ddb4490a7dd85cdc9a2c7e5.zip
* isearch.el (isearch-cmds): Doc clarification.
Fixes: debbugs:15547
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/isearch.el6
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 99255517a57..8a911501f0f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12014-02-08 Lars Ingebrigtsen <larsi@gnus.org> 12014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2 2
3 * isearch.el (isearch-hide-immediately): Doc clarification
4 (bug#14723).
5
3 * simple.el (line-move): Document utility function used many 6 * simple.el (line-move): Document utility function used many
4 places in the Emacs sources (bug#14843). 7 places in the Emacs sources (bug#14843).
5 8
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 1fbdeb906d8..c8dc89cb821 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -147,9 +147,9 @@ whenever point is in one of them."
147(defcustom isearch-hide-immediately t 147(defcustom isearch-hide-immediately t
148 "If non-nil, re-hide an invisible match right away. 148 "If non-nil, re-hide an invisible match right away.
149This variable makes a difference when `search-invisible' is set to `open'. 149This variable makes a difference when `search-invisible' is set to `open'.
150It means that after search makes some invisible text visible 150If nil then do not re-hide opened invisible text when the match moves.
151to show the match, it makes the text invisible again when the match moves. 151Whatever the value, all opened invisible text is hidden again after exiting
152Ordinarily the text becomes invisible again at the end of the search." 152the search."
153 :type 'boolean 153 :type 'boolean
154 :group 'isearch) 154 :group 'isearch)
155 155