mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-06 11:55:48 +00:00
; * doc/lispref/searching.texi (Rx Notation): Simplify rx example
This commit is contained in:
parent
03e5698167
commit
f47297782b
@ -1028,13 +1028,13 @@ programming language:
|
||||
|
||||
@example
|
||||
@group
|
||||
(rx "/*" ; Initial /*
|
||||
(rx "/*" ; Initial /*
|
||||
(zero-or-more
|
||||
(or (not (any "*")) ; Either non-*,
|
||||
(seq "*" ; or * followed by
|
||||
(not (any "/"))))) ; non-/
|
||||
(one-or-more "*") ; At least one star,
|
||||
"/") ; and the final /
|
||||
(or (not "*") ; Either non-*,
|
||||
(seq "*" ; or * followed by
|
||||
(not "/")))) ; non-/
|
||||
(one-or-more "*") ; At least one star,
|
||||
"/") ; and the final /
|
||||
@end group
|
||||
@end example
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user