diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/isearch.el | 6 |
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 @@ | |||
| 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2014-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. |
| 149 | This variable makes a difference when `search-invisible' is set to `open'. | 149 | This variable makes a difference when `search-invisible' is set to `open'. |
| 150 | It means that after search makes some invisible text visible | 150 | If nil then do not re-hide opened invisible text when the match moves. |
| 151 | to show the match, it makes the text invisible again when the match moves. | 151 | Whatever the value, all opened invisible text is hidden again after exiting |
| 152 | Ordinarily the text becomes invisible again at the end of the search." | 152 | the search." |
| 153 | :type 'boolean | 153 | :type 'boolean |
| 154 | :group 'isearch) | 154 | :group 'isearch) |
| 155 | 155 | ||