monnier pushed a commit to branch master
in repository elpa.
commit 334270fe4e2e458b27dbdb56b792949e5d4d2a54
Author: Teemu Likonen <[email protected]>
Date: Sat Jun 25 08:56:57 2011 +0300
Rephrase grouping construct \(\) description in doc string
---
wcheck-mode.el | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/wcheck-mode.el b/wcheck-mode.el
index 99db3f6..5986b0f 100644
--- a/wcheck-mode.el
+++ b/wcheck-mode.el
@@ -334,9 +334,10 @@ regexp-end
You can't use grouping constructs `\\( ... \\)' in
`regexp-start' because the back reference `\\1' is used for
- separating the body string from the start and end match. You
- can use \"shy\" groups `\\(?: ... \\)' which do not record
- the matched substring. Grouping constructs `\\( ... \\)' are
+ separating the `regexp-body' match string from the
+ `regexp-start' and `regexp-end' match strings. You can use
+ \"shy\" groups `\\(?: ... \\)' which do not record the
+ matched substring. Grouping constructs `\\( ... \\)' are
allowed in `regexp-body' and `regexp-end'. Just note that the
first group and back reference \\1 is already taken.