]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve markup for the description of non-greedy operators.
authorEli Zaretskii <eliz@gnu.org>
Tue, 4 Jan 2000 12:01:26 +0000 (12:01 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 4 Jan 2000 12:01:26 +0000 (12:01 +0000)
Add an index entry.

man/search.texi

index a4f4d87dabaeb0a0be7ea2c44c94bea2db84b521..d4253ce08ca01b94c888dffa3bdbe466b813118b 100644 (file)
@@ -408,10 +408,11 @@ preceding expression either once or not at all.  For example,
 @samp{ca?r} matches @samp{car} or @samp{cr}; nothing else.
 
 @item *?, +?, ??
+@cindex non-greedy regexp matching
 are non-greedy variants of the operators above.  The normal operators
-@samp{*, +, ?} are greedy in that they match as much as they can,
-while if you prepend a @samp{?} after them, it makes them non-greedy
-in that they will match as little as possible.
+@samp{*}, @samp{+}, @samp{?} are @dfn{greedy} in that they match as much
+as they can, while if you append a @samp{?} after them, it makes them
+non-greedy: they will match as little as possible.
 
 @item [ @dots{} ]
 is a @dfn{character set}, which begins with @samp{[} and is terminated