1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-09 00:11:49 -07:00

(rx-constituents): Fix up `anything'.

This commit is contained in:
Stefan Monnier 2007-06-30 18:49:41 +00:00
parent bd1bb1c7f2
commit f61fd6b7c3
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
2007-06-29 Juanma Barranquero <lekktu@gmail.com>
* generic-x.el (generic-define-mswindows-modes)

View file

@ -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