aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-01 04:53:34 +0000
committerRichard M. Stallman1997-08-01 04:53:34 +0000
commit68c18d6d0a7db38ba107d96a444f13c1eafac9eb (patch)
tree5359964e7d98159dae6f437bc301833a543f0dd5
parent76376439f3306a8c6a1dc47121da851e146814f9 (diff)
downloademacs-68c18d6d0a7db38ba107d96a444f13c1eafac9eb.tar.gz
emacs-68c18d6d0a7db38ba107d96a444f13c1eafac9eb.zip
(isearch-hide-immediately): Doc fix.
-rw-r--r--lisp/isearch.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index a9217998efd..7053e637865 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -174,11 +174,11 @@ an overlay having an `invisible' property and that overlay has a property
174 :group 'isearch) 174 :group 'isearch)
175 175
176(defcustom isearch-hide-immediately t 176(defcustom isearch-hide-immediately t
177 "If t hide the previous match if needed. 177 "If non-nil, re-hide an invisible match right away.
178This has efect iff `search-invisible' is set to `open' and it means 178This variable makes a difference when `search-invisible' is set to `open'.
179that if the current match is out of one of the previously shown 179It means that after search makes some invisible text visible
180regions hide is right away, as opposed to hiding it at the end of 180to show the match, it makes the text invisible again when the match moves.
181isearch." 181Ordinarily the text becomes invisible again at the end of the search."
182 :type 'boolean 182 :type 'boolean
183 :group 'isearch) 183 :group 'isearch)
184 184