diff --git a/doc/html/pcre2_pattern_info.html b/doc/html/pcre2_pattern_info.html index 2e35709..eaaac6c 100644 --- a/doc/html/pcre2_pattern_info.html +++ b/doc/html/pcre2_pattern_info.html @@ -19,7 +19,8 @@ SYNOPSIS #include <pcre2.h>
-int pcre2_pattern_info(const pcre2 *code, uint32_t what, void *where); +int pcre2_pattern_info(const pcre2_code *code, uint32_t what, + void *where);
-Last updated: 12 February 2019
+Last updated: 14 February 2019
Copyright © 1997-2019 University of Cambridge.
diff --git a/doc/pcre2.txt b/doc/pcre2.txt
index 4642e88..1ccaf90 100644
--- a/doc/pcre2.txt
+++ b/doc/pcre2.txt
@@ -402,7 +402,8 @@ PCRE2 NATIVE API AUXILIARY FUNCTIONS
const unsigned char *pcre2_maketables(pcre2_general_context *gcontext);
- int pcre2_pattern_info(const pcre2 *code, uint32_t what, void *where);
+ int pcre2_pattern_info(const pcre2_code *code, uint32_t what,
+ void *where);
int pcre2_callout_enumerate(const pcre2_code *code,
int (*callback)(pcre2_callout_enumerate_block *, void *),
@@ -3677,7 +3678,7 @@ AUTHOR
REVISION
- Last updated: 12 February 2019
+ Last updated: 14 February 2019
Copyright (c) 1997-2019 University of Cambridge.
------------------------------------------------------------------------------
diff --git a/doc/pcre2_pattern_info.3 b/doc/pcre2_pattern_info.3
index 01b74a2..edd8989 100644
--- a/doc/pcre2_pattern_info.3
+++ b/doc/pcre2_pattern_info.3
@@ -1,4 +1,4 @@
-.TH PCRE2_PATTERN_INFO 3 "16 December 2017" "PCRE2 10.31"
+.TH PCRE2_PATTERN_INFO 3 "14 February 2019" "PCRE2 10.33"
.SH NAME
PCRE2 - Perl-compatible regular expressions (revised API)
.SH SYNOPSIS
@@ -7,7 +7,8 @@ PCRE2 - Perl-compatible regular expressions (revised API)
.B #include