From: Stefan Monnier <monnier@iro.umontreal.ca>
Date: Fri, 3 Oct 2008 14:12:31 +0000 (+0000)
Subject: (rx): Docstring fix.
X-Git-Tag: emacs-pretest-23.0.90~2665
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=716c808a99e76e2b462b0f45309066b6a5aef437;p=emacs.git

(rx): Docstring fix.
---

diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
index 297bb1a6460..5e76256cfe6 100644
--- a/lisp/emacs-lisp/rx.el
+++ b/lisp/emacs-lisp/rx.el
@@ -878,9 +878,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