aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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