summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-06-13 14:55:18 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-06-13 14:55:18 +0000
commita24e9c9aff88d3b9f6022cbdfee49d758cfde0f7 (patch)
tree4de4657d9375cf1e559de3023115a3304db665ce /HACKING
parent4a2dd57d1f0434eec752230fe745d046e5da5eb2 (diff)
downloadpcre-a24e9c9aff88d3b9f6022cbdfee49d758cfde0f7.tar.gz
Documentation update preparatory to release.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@181 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING7
1 files changed, 6 insertions, 1 deletions
diff --git a/HACKING b/HACKING
index c75b3e8..49bba8a 100644
--- a/HACKING
+++ b/HACKING
@@ -129,13 +129,18 @@ These items are all just one byte long
OP_ANYBYTE match any single byte, even in UTF-8 mode
OP_SOD match start of data: \A
OP_SOM, start of match (subject + offset): \G
+ OP_SET_SOM, set start of match (\K)
OP_CIRC ^ (start of data, or after \n in multiline)
OP_NOT_WORD_BOUNDARY \W
OP_WORD_BOUNDARY \w
OP_NOT_DIGIT \D
OP_DIGIT \d
+ OP_NOT_HSPACE \H
+ OP_HSPACE \h
OP_NOT_WHITESPACE \S
OP_WHITESPACE \s
+ OP_NOT_VSPACE \V
+ OP_VSPACE \v
OP_NOT_WORDCHAR \W
OP_WORDCHAR \w
OP_EODN match end of data or \n at end: \Z
@@ -399,4 +404,4 @@ at compile time, and so does not cause anything to be put into the compiled
data.
Philip Hazel
-November 2006
+June 2007