]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispref/searching.texi: Document regexp repetition limit.
authorNoam Postavsky <npostavs@gmail.com>
Mon, 11 Dec 2017 23:52:52 +0000 (18:52 -0500)
committerNoam Postavsky <npostavs@gmail.com>
Sat, 27 Jan 2018 00:53:09 +0000 (19:53 -0500)
doc/lispref/searching.texi

index 552001e89049566609e8b6d03a5d507540315a91..e759967aa8a764993517215f99c8f47bec8ba3df 100644 (file)
@@ -639,7 +639,15 @@ and nothing else.  @samp{c[ad]\@{3\@}r} matches string such as
 is a more general postfix operator that specifies repetition with a
 minimum of @var{m} repeats and a maximum of @var{n} repeats.  If @var{m}
 is omitted, the minimum is 0; if @var{n} is omitted, there is no
-maximum.
+maximum.  For both forms, @var{m} and @var{n}, if specified, may be no
+larger than
+@ifnottex
+2**15 @minus{} 1
+@end ifnottex
+@tex
+@math{2^{15}-1}
+@end tex
+.
 
 For example, @samp{c[ad]\@{1,2\@}r} matches the strings @samp{car},
 @samp{cdr}, @samp{caar}, @samp{cadr}, @samp{cdar}, and @samp{cddr}, and