From f61fd6b7c3de95c2fafceca66c153933b2535b4e Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sat, 30 Jun 2007 18:49:41 +0000 Subject: [PATCH] (rx-constituents): Fix up `anything'. --- lisp/ChangeLog | 4 ++++ lisp/emacs-lisp/rx.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dd0e5d17100..2dc82bf403e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-06-30 Stefan Monnier + + * emacs-lisp/rx.el (rx-constituents): Fix up `anything'. + 2007-06-29 Juanma Barranquero * generic-x.el (generic-define-mswindows-modes) diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index 54f88ba3ea5..6caa77220bb 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -120,7 +120,7 @@ (| . or) ; SRE (not-newline . ".") (nonl . not-newline) ; SRE - (anything . ".\\|\n") + (anything . "\\(?:.\\|\n\\)") (any . (rx-any 1 nil rx-check-any)) ; inconsistent with SRE (in . any) (char . any) ; sregex -- 2.39.2