From: Lars Ingebrigtsen Date: Sat, 8 Feb 2014 06:56:18 +0000 (-0800) Subject: * isearch.el (isearch-cmds): Doc clarification. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~98 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9165ffc0f0ff73372ddb4490a7dd85cdc9a2c7e5;p=emacs.git * isearch.el (isearch-cmds): Doc clarification. Fixes: debbugs:15547 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99255517a57..8a911501f0f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2014-02-08 Lars Ingebrigtsen + * isearch.el (isearch-hide-immediately): Doc clarification + (bug#14723). + * simple.el (line-move): Document utility function used many places in the Emacs sources (bug#14843). 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." (defcustom isearch-hide-immediately t "If non-nil, re-hide an invisible match right away. This variable makes a difference when `search-invisible' is set to `open'. -It means that after search makes some invisible text visible -to show the match, it makes the text invisible again when the match moves. -Ordinarily the text becomes invisible again at the end of the search." +If nil then do not re-hide opened invisible text when the match moves. +Whatever the value, all opened invisible text is hidden again after exiting +the search." :type 'boolean :group 'isearch)