summaryrefslogtreecommitdiff
path: root/pcreposix.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-03-27 17:45:29 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-03-27 17:45:29 +0000
commit830417cb79946e957b855d50218d64d74562f47c (patch)
tree161e947d9b2552dfbb79ccc5b87674c8c785a983 /pcreposix.c
parent156c5951245218524c2f59f97eb66a1e48a71eae (diff)
downloadpcre-830417cb79946e957b855d50218d64d74562f47c.tar.gz
Add support for *MARK and names for *PRUNE, *SKIP, *THEN.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@510 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcreposix.c')
-rw-r--r--pcreposix.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pcreposix.c b/pcreposix.c
index 76f3f87..5b022cc 100644
--- a/pcreposix.c
+++ b/pcreposix.c
@@ -135,7 +135,7 @@ static const int eint[] = {
REG_INVARG, /* inconsistent NEWLINE options */
REG_BADPAT, /* \g is not followed followed by an (optionally braced) non-zero number */
REG_BADPAT, /* a numbered reference must not be zero */
- REG_BADPAT, /* (*VERB) with an argument is not supported */
+ REG_BADPAT, /* an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT) */
/* 60 */
REG_BADPAT, /* (*VERB) not recognized */
REG_BADPAT, /* number is too big */
@@ -143,7 +143,8 @@ static const int eint[] = {
REG_BADPAT, /* digit expected after (?+ */
REG_BADPAT, /* ] is an invalid data character in JavaScript compatibility mode */
/* 65 */
- REG_BADPAT /* different names for subpatterns of the same number are not allowed */
+ REG_BADPAT, /* different names for subpatterns of the same number are not allowed */
+ REG_BADPAT, /* (*MARK) must have an argument */
};
/* Table of texts corresponding to POSIX error codes */