]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify rx example in manual
authorMattias Engdegård <mattiase@acm.org>
Mon, 9 Mar 2020 11:13:45 +0000 (12:13 +0100)
committerMattias Engdegård <mattiase@acm.org>
Mon, 9 Mar 2020 15:00:18 +0000 (16:00 +0100)
* doc/lispref/searching.texi (Rx Notation):
Use the 'not' shorthand introduced in Emacs 27.

doc/lispref/searching.texi

index 1a090ebe1013c12f352e3e5c6573218513146321..83c154938cd5f3f0d94f7e4b87de8f1ad1253160 100644 (file)
@@ -1021,8 +1021,8 @@ or, using shorter synonyms and written more compactly,
 @example
 @group
 (rx "/*"
-    (* (| (not (any "*"))
-          (: "*" (not (any "/")))))
+    (* (| (not "*")
+          (: "*" (not "/"))))
     (+ "*") "/")
 @end group
 @end example