]> git.eshelyaron.com Git - emacs.git/commitdiff
emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
authorLeo Liu <sdl.web@gmail.com>
Tue, 29 Jun 2010 12:09:07 +0000 (14:09 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 29 Jun 2010 12:09:07 +0000 (14:09 +0200)
lisp/ChangeLog
lisp/emacs-lisp/rx.el

index 5bda792cfc00545d8a46eca7c006f5f671647867..540ab2f0d99ae67b0d72b883f22182239dc41558 100644 (file)
@@ -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
index 5d04494ecb6ce76bd808a6678a5014ed44b32ff4..85fe3514b01a194522bc58b128254b7955ccd40e 100644 (file)
@@ -1053,9 +1053,6 @@ CHAR
      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