changeset 109285:910054ff2902

emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 29 Jun 2010 14:09:07 +0200
parents 46d052bb8f04
children 72670994a836
files lisp/ChangeLog lisp/emacs-lisp/rx.el
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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  <sdl.web@gmail.com>  (tiny change)
+
+	* emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
+
 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
 
 	* generic-x.el (bat-generic-mode): Fix regexp for command line
--- 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