; * doc/lispref/searching.texi (Rx Notation): Simplify rx example
This commit is contained in:
@@ -1030,9 +1030,9 @@ programming language:
|
||||
@group
|
||||
(rx "/*" ; Initial /*
|
||||
(zero-or-more
|
||||
(or (not (any "*")) ; Either non-*,
|
||||
(or (not "*") ; Either non-*,
|
||||
(seq "*" ; or * followed by
|
||||
(not (any "/"))))) ; non-/
|
||||
(not "/")))) ; non-/
|
||||
(one-or-more "*") ; At least one star,
|
||||
"/") ; and the final /
|
||||
@end group
|
||||
|
||||
Reference in New Issue
Block a user