Diff for /embedaddon/pcre/doc/html/pcre_compile2.html between versions 1.1.1.4 and 1.1.1.5

version 1.1.1.4, 2013/07/22 08:25:57 version 1.1.1.5, 2014/06/15 19:46:05
Line 20  SYNOPSIS Line 20  SYNOPSIS
 </P>  </P>
 <P>  <P>
 <b>pcre *pcre_compile2(const char *<i>pattern</i>, int <i>options</i>,</b>  <b>pcre *pcre_compile2(const char *<i>pattern</i>, int <i>options</i>,</b>
<b>int *<i>errorcodeptr</i>,</b><b>     int *<i>errorcodeptr</i>,</b>
<b>const char **<i>errptr</i>, int *<i>erroffset</i>,</b><b>     const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
<b>const unsigned char *<i>tableptr</i>);</b><b>     const unsigned char *<i>tableptr</i>);</b>
</P><br>
<P><br>
 <b>pcre16 *pcre16_compile2(PCRE_SPTR16 <i>pattern</i>, int <i>options</i>,</b>  <b>pcre16 *pcre16_compile2(PCRE_SPTR16 <i>pattern</i>, int <i>options</i>,</b>
<b>int *<i>errorcodeptr</i>,</b><b>     int *<i>errorcodeptr</i>,</b>
<b>const char **<i>errptr</i>, int *<i>erroffset</i>,</b><b>     const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
<b>const unsigned char *<i>tableptr</i>);</b><b>     const unsigned char *<i>tableptr</i>);</b>
</P><br>
<P><br>
 <b>pcre32 *pcre32_compile2(PCRE_SPTR32 <i>pattern</i>, int <i>options</i>,</b>  <b>pcre32 *pcre32_compile2(PCRE_SPTR32 <i>pattern</i>, int <i>options</i>,</b>
<b>int *<i>errorcodeptr</i>,</b><b>"     int *<i>errorcodeptr</i>,£</b>
<b>const char **<i>errptr</i>, int *<i>erroffset</i>,</b><b>     const char **<i>errptr</i>, int *<i>erroffset</i>,</b>
<b>const unsigned char *<i>tableptr</i>);</b><b>     const unsigned char *<i>tableptr</i>);</b>
 </P>  </P>
 <br><b>  <br><b>
 DESCRIPTION  DESCRIPTION
Line 69  The option bits are: Line 69  The option bits are:
   PCRE_FIRSTLINE          Force matching to be before newline    PCRE_FIRSTLINE          Force matching to be before newline
   PCRE_JAVASCRIPT_COMPAT  JavaScript compatibility    PCRE_JAVASCRIPT_COMPAT  JavaScript compatibility
   PCRE_MULTILINE          ^ and $ match newlines within data    PCRE_MULTILINE          ^ and $ match newlines within data
     PCRE_NEVER_UTF          Lock out UTF, e.g. via (*UTF)
   PCRE_NEWLINE_ANY        Recognize any Unicode newline sequence    PCRE_NEWLINE_ANY        Recognize any Unicode newline sequence
   PCRE_NEWLINE_ANYCRLF    Recognize CR, LF, and CRLF as newline    PCRE_NEWLINE_ANYCRLF    Recognize CR, LF, and CRLF as newline
                             sequences                              sequences
Line 77  The option bits are: Line 78  The option bits are:
   PCRE_NEWLINE_LF         Set LF as the newline sequence    PCRE_NEWLINE_LF         Set LF as the newline sequence
   PCRE_NO_AUTO_CAPTURE    Disable numbered capturing paren-    PCRE_NO_AUTO_CAPTURE    Disable numbered capturing paren-
                             theses (named ones available)                              theses (named ones available)
     PCRE_NO_AUTO_POSSESS    Disable auto-possessification
     PCRE_NO_START_OPTIMIZE  Disable match-time start optimizations
   PCRE_NO_UTF16_CHECK     Do not check the pattern for UTF-16    PCRE_NO_UTF16_CHECK     Do not check the pattern for UTF-16
                             validity (only relevant if                              validity (only relevant if
                             PCRE_UTF16 is set)                              PCRE_UTF16 is set)

Removed from v.1.1.1.4  
changed lines
  Added in v.1.1.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>