summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authornigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:38:09 +0000
committernigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:38:09 +0000
commit94ffc03e8ac1628911f231a91d7d8d94c2f0dc38 (patch)
tree29906e1897834846e4d630ac09285b27656f2cdc /internal.h
parente390bd8b72ea8a359349a0d3ec2061289dc65b56 (diff)
downloadpcre-94ffc03e8ac1628911f231a91d7d8d94c2f0dc38.tar.gz
Load pcre-1.02 into code/trunk.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@7 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/internal.h b/internal.h
index 3a40610..806ee9a 100644
--- a/internal.h
+++ b/internal.h
@@ -3,7 +3,7 @@
*************************************************/
-#define PCRE_VERSION "1.01 19-Nov-1997"
+#define PCRE_VERSION "1.02 12-Dec-1997"
/* This is a library of functions to support regular expressions whose syntax
@@ -108,7 +108,7 @@ enum { ESC_A = 1, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, ESC_W, ESC_w,
/* Opcode table: OP_BRA must be last, as all values >= it are used for brackets
that extract substrings. Starting from 1 (i.e. after OP_END), the values up to
-OP_EOL must correspond in order to the list of escapes immediately above. */
+OP_EOD must correspond in order to the list of escapes immediately above. */
enum {
OP_END, /* End of pattern */
@@ -125,8 +125,7 @@ enum {
OP_NOT_WORDCHAR, /* \W */
OP_WORDCHAR, /* \w */
OP_CUT, /* The analogue of Prolog's "cut" operation (extension) */
- OP_EOD, /* End of data: or \Z. This must always be the last
- of the backslashed meta values. */
+ OP_EOD, /* End of data: \Z. */
OP_CIRC, /* Start of line - varies with multiline switch */
OP_DOLL, /* End of line - varies with multiline switch */