]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/emacs-lisp/shortdoc.el (regexp): less contrived rx example
authorMattias Engdegård <mattiase@acm.org>
Wed, 28 Oct 2020 14:05:35 +0000 (15:05 +0100)
committerMattias Engdegård <mattiase@acm.org>
Wed, 28 Oct 2020 14:05:35 +0000 (15:05 +0100)
lisp/emacs-lisp/shortdoc.el

index 1231e799eddb1f2dd417a318e2a09fcb252f9fb9..59c8c7794cf46a5d60e84f1fc7351aeacbb24ab9 100644 (file)
@@ -665,7 +665,7 @@ There can be any number of :example/:result elements."
    :eval (regexp-opt-charset '(?a ?b ?c ?d ?e)))
   "The `rx' Structured Regexp Notation"
   (rx
-   :eval (rx bol (| (* "f") (+ "o") (? "o")) (| digit space) (group "bar")))
+   :eval (rx "IP=" (+ digit) (= 3 "." (+ digit))))
   (rx-to-string
    :eval (rx-to-string '(| "foo" "bar")))
   (rx-define