version 1.1.1.4, 2013/07/22 08:25:55
|
version 1.1.1.5, 2014/06/15 19:46:03
|
Line 110 static const int eint[] = {
|
Line 110 static const int eint[] = {
|
REG_BADPAT, /* POSIX collating elements are not supported */ |
REG_BADPAT, /* POSIX collating elements are not supported */ |
REG_INVARG, /* this version of PCRE is not compiled with PCRE_UTF8 support */ |
REG_INVARG, /* this version of PCRE is not compiled with PCRE_UTF8 support */ |
REG_BADPAT, /* spare error */ |
REG_BADPAT, /* spare error */ |
REG_BADPAT, /* character value in \x{...} sequence is too large */ | REG_BADPAT, /* character value in \x{} or \o{} is too large */ |
/* 35 */ |
/* 35 */ |
REG_BADPAT, /* invalid condition (?(0) */ |
REG_BADPAT, /* invalid condition (?(0) */ |
REG_BADPAT, /* \C not allowed in lookbehind assertion */ |
REG_BADPAT, /* \C not allowed in lookbehind assertion */ |
Line 163 static const int eint[] = {
|
Line 163 static const int eint[] = {
|
REG_BADPAT, /* overlong MARK name */ |
REG_BADPAT, /* overlong MARK name */ |
REG_BADPAT, /* character value in \u.... sequence is too large */ |
REG_BADPAT, /* character value in \u.... sequence is too large */ |
REG_BADPAT, /* invalid UTF-32 string (should not occur) */ |
REG_BADPAT, /* invalid UTF-32 string (should not occur) */ |
REG_BADPAT /* setting UTF is disabled by the application */ | REG_BADPAT, /* setting UTF is disabled by the application */ |
| REG_BADPAT, /* non-hex character in \\x{} (closing brace missing?) */ |
| /* 80 */ |
| REG_BADPAT, /* non-octal character in \o{} (closing brace missing?) */ |
| REG_BADPAT, /* missing opening brace after \o */ |
| REG_BADPAT, /* parentheses too deeply nested */ |
| REG_BADPAT, /* invalid range in character class */ |
| REG_BADPAT /* group name must start with a non-digit */ |
}; |
}; |
|
|
/* Table of texts corresponding to POSIX error codes */ |
/* Table of texts corresponding to POSIX error codes */ |