summaryrefslogtreecommitdiff
path: root/pcretest.c
diff options
context:
space:
mode:
authorchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-16 15:57:12 +0000
committerchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-16 15:57:12 +0000
commit1bfe051af5617c37096d2cc683d42f048fd600f9 (patch)
tree3d6acb25aadd20f6852957a618c93d731d2c53c0 /pcretest.c
parent8a0378e0ad9448c3a33b980b320613c31b65264e (diff)
downloadpcre-1bfe051af5617c37096d2cc683d42f048fd600f9.tar.gz
pcre32: Rename new values to pcre32_fullinfo
Rename to PCRE_INFO_FIRSTCHARACTER[FLAGS] (unfortunately PCRE_INFO_FIRSTCHAR was already taken) and PCRE_INFO_REQUIREDCHAR[FLAGS]. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1113 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcretest.c')
-rw-r--r--pcretest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pcretest.c b/pcretest.c
index 98f2d3e..8a9fe33 100644
--- a/pcretest.c
+++ b/pcretest.c
@@ -3772,10 +3772,10 @@ while (!done)
if (new_info(re, NULL, PCRE_INFO_SIZE, &size) +
new_info(re, NULL, PCRE_INFO_CAPTURECOUNT, &count) +
new_info(re, NULL, PCRE_INFO_BACKREFMAX, &backrefmax) +
- new_info(re, NULL, PCRE_INFO_FIRSTLITERAL, &first_char) +
- new_info(re, NULL, PCRE_INFO_FIRSTLITERALSET, &first_char_set) +
- new_info(re, NULL, PCRE_INFO_LASTLITERAL2, &need_char) +
- new_info(re, NULL, PCRE_INFO_LASTLITERAL2SET, &need_char_set) +
+ new_info(re, NULL, PCRE_INFO_FIRSTCHARACTER, &first_char) +
+ new_info(re, NULL, PCRE_INFO_FIRSTCHARACTERFLAGS, &first_char_set) +
+ new_info(re, NULL, PCRE_INFO_REQUIREDCHAR, &need_char) +
+ new_info(re, NULL, PCRE_INFO_REQUIREDCHARFLAGS, &need_char_set) +
new_info(re, NULL, PCRE_INFO_NAMEENTRYSIZE, &nameentrysize) +
new_info(re, NULL, PCRE_INFO_NAMECOUNT, &namecount) +
new_info(re, NULL, PCRE_INFO_NAMETABLE, (void *)&nametable) +