[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-30 f47297782bd: ; * doc/lispref/searching.texi (Rx Notation): Simp
From: |
Mattias Engdegård |
Subject: |
emacs-30 f47297782bd: ; * doc/lispref/searching.texi (Rx Notation): Simplify rx example |
Date: |
Mon, 9 Sep 2024 09:37:04 -0400 (EDT) |
branch: emacs-30
commit f47297782bdb5e5a07e02f119c8013d11f7d7fae
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>
; * doc/lispref/searching.texi (Rx Notation): Simplify rx example
---
doc/lispref/searching.texi | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index 7b4a9100e77..4691a6557e8 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- emacs-30 f47297782bd: ; * doc/lispref/searching.texi (Rx Notation): Simplify rx example,
Mattias Engdegård <=