# HG changeset patch # User Juanma Barranquero # Date 1277813347 -7200 # Node ID 910054ff2902e345c058071874d0405146a54117 # Parent 46d052bb8f04d2e353ba650541833638070fadbb emacs-lisp/rx.el (rx): Doc fix. (Bug#6537) diff -r 46d052bb8f04 -r 910054ff2902 lisp/ChangeLog --- a/lisp/ChangeLog Sun Jun 27 23:57:39 2010 +0200 +++ b/lisp/ChangeLog Tue Jun 29 14:09:07 2010 +0200 @@ -1,3 +1,7 @@ +2010-06-29 Leo (tiny change) + + * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537) + 2010-06-27 Oleksandr Gavenko (tiny change) * generic-x.el (bat-generic-mode): Fix regexp for command line diff -r 46d052bb8f04 -r 910054ff2902 lisp/emacs-lisp/rx.el --- a/lisp/emacs-lisp/rx.el Sun Jun 27 23:57:39 2010 +0200 +++ b/lisp/emacs-lisp/rx.el Tue Jun 29 14:09:07 2010 +0200 @@ -1053,9 +1053,6 @@ like `and', but makes the match accessible with `match-end', `match-beginning', and `match-string'. -`(group SEXP1 SEXP2 ...)' - another name for `submatch'. - `(or SEXP1 SEXP2 ...)' `(| SEXP1 SEXP2 ...)' matches anything that matches SEXP1 or SEXP2, etc. If all