Diff for /embedaddon/pcre/doc/html/pcreapi.html between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/02/21 23:50:25 version 1.1.1.3, 2012/10/09 09:19:18
Line 317  PCRE supports five different conventions for indicatin Line 317  PCRE supports five different conventions for indicatin
 strings: a single CR (carriage return) character, a single LF (linefeed)  strings: a single CR (carriage return) character, a single LF (linefeed)
 character, the two-character sequence CRLF, any of the three preceding, or any  character, the two-character sequence CRLF, any of the three preceding, or any
 Unicode newline sequence. The Unicode newline sequences are the three just  Unicode newline sequence. The Unicode newline sequences are the three just
mentioned, plus the single characters VT (vertical tab, U+000B), FF (formfeed,mentioned, plus the single characters VT (vertical tab, U+000B), FF (form feed,
 U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and PS  U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and PS
 (paragraph separator, U+2029).  (paragraph separator, U+2029).
 </P>  </P>
Line 524  documentation). For those options that can be differen Line 524  documentation). For those options that can be differen
 the pattern, the contents of the <i>options</i> argument specifies their  the pattern, the contents of the <i>options</i> argument specifies their
 settings at the start of compilation and execution. The PCRE_ANCHORED,  settings at the start of compilation and execution. The PCRE_ANCHORED,
 PCRE_BSR_<i>xxx</i>, PCRE_NEWLINE_<i>xxx</i>, PCRE_NO_UTF8_CHECK, and  PCRE_BSR_<i>xxx</i>, PCRE_NEWLINE_<i>xxx</i>, PCRE_NO_UTF8_CHECK, and
PCRE_NO_START_OPT options can be set at the time of matching as well as atPCRE_NO_START_OPTIMIZE options can be set at the time of matching as well as at
 compile time.  compile time.
 </P>  </P>
 <P>  <P>
Line 641  documentation. Line 641  documentation.
 <pre>  <pre>
   PCRE_EXTENDED    PCRE_EXTENDED
 </pre>  </pre>
If this bit is set, whitespace data characters in the pattern are totallyIf this bit is set, white space data characters in the pattern are totally
ignored except when escaped or inside a character class. Whitespace does notignored except when escaped or inside a character class. White space does not
 include the VT character (code 11). In addition, characters between an  include the VT character (code 11). In addition, characters between an
 unescaped # outside a character class and the next newline, inclusive, are also  unescaped # outside a character class and the next newline, inclusive, are also
 ignored. This is equivalent to Perl's /x option, and it can be changed within a  ignored. This is equivalent to Perl's /x option, and it can be changed within a
Line 659  happen to represent a newline do not count. Line 659  happen to represent a newline do not count.
 </P>  </P>
 <P>  <P>
 This option makes it possible to include comments inside complicated patterns.  This option makes it possible to include comments inside complicated patterns.
Note, however, that this applies only to data characters. Whitespace charactersNote, however, that this applies only to data characters. White space characters
 may never appear within special character sequences in a pattern, for example  may never appear within special character sequences in a pattern, for example
 within the sequence (?( that introduces a conditional subpattern.  within the sequence (?( that introduces a conditional subpattern.
 <pre>  <pre>
Line 745  CRLF sequence. Setting PCRE_NEWLINE_ANYCRLF specifies  Line 745  CRLF sequence. Setting PCRE_NEWLINE_ANYCRLF specifies 
 preceding sequences should be recognized. Setting PCRE_NEWLINE_ANY specifies  preceding sequences should be recognized. Setting PCRE_NEWLINE_ANY specifies
 that any Unicode newline sequence should be recognized. The Unicode newline  that any Unicode newline sequence should be recognized. The Unicode newline
 sequences are the three just mentioned, plus the single characters VT (vertical  sequences are the three just mentioned, plus the single characters VT (vertical
tab, U+000B), FF (formfeed, U+000C), NEL (next line, U+0085), LS (linetab, U+000B), FF (form feed, U+000C), NEL (next line, U+0085), LS (line
 separator, U+2028), and PS (paragraph separator, U+2029). For the 8-bit  separator, U+2028), and PS (paragraph separator, U+2029). For the 8-bit
 library, the last two are recognized only in UTF-8 mode.  library, the last two are recognized only in UTF-8 mode.
 </P>  </P>
Line 759  other combinations may yield unused numbers and cause  Line 759  other combinations may yield unused numbers and cause 
 </P>  </P>
 <P>  <P>
 The only time that a line break in a pattern is specially recognized when  The only time that a line break in a pattern is specially recognized when
compiling is when PCRE_EXTENDED is set. CR and LF are whitespace characters,compiling is when PCRE_EXTENDED is set. CR and LF are white space characters,
 and so are ignored in this mode. Also, an unescaped # outside a character class  and so are ignored in this mode. Also, an unescaped # outside a character class
 indicates a comment that lasts until after the next line break sequence. In  indicates a comment that lasts until after the next line break sequence. In
 other circumstances, line break sequences in patterns are treated as literal  other circumstances, line break sequences in patterns are treated as literal
Line 916  fallen out of use. To avoid confusion, they have not b Line 916  fallen out of use. To avoid confusion, they have not b
   72  too many forward references    72  too many forward references
   73  disallowed Unicode code point (&#62;= 0xd800 && &#60;= 0xdfff)    73  disallowed Unicode code point (&#62;= 0xd800 && &#60;= 0xdfff)
   74  invalid UTF-16 string (specifically UTF-16)    74  invalid UTF-16 string (specifically UTF-16)
     75  name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)
     76  character value in \u.... sequence is too large
 </pre>  </pre>
 The numbers 32 and 10000 in errors 48 and 49 are defaults; different values may  The numbers 32 and 10000 in errors 48 and 49 are defaults; different values may
 be used if the limits were changed when PCRE was built.  be used if the limits were changed when PCRE was built.
Line 949  wants to pass any of the other fields to <b>pcre_exec( Line 951  wants to pass any of the other fields to <b>pcre_exec(
 <b>pcre_dfa_exec()</b>, it must set up its own <b>pcre_extra</b> block.  <b>pcre_dfa_exec()</b>, it must set up its own <b>pcre_extra</b> block.
 </P>  </P>
 <P>  <P>
The second argument of <b>pcre_study()</b> contains option bits. There is onlyThe second argument of <b>pcre_study()</b> contains option bits. There are three
one option: PCRE_STUDY_JIT_COMPILE. If this is set, and the just-in-timeoptions:
compiler is available, the pattern is further compiled into machine code that<pre>
executes much faster than the <b>pcre_exec()</b> matching function. If  PCRE_STUDY_JIT_COMPILE
the just-in-time compiler is not available, this option is ignored. All other  PCRE_STUDY_JIT_PARTIAL_HARD_COMPILE
bits in the <i>options</i> argument must be zero.  PCRE_STUDY_JIT_PARTIAL_SOFT_COMPILE
 </pre>
 If any of these are set, and the just-in-time compiler is available, the
 pattern is further compiled into machine code that executes much faster than
 the <b>pcre_exec()</b> interpretive matching function. If the just-in-time
 compiler is not available, these options are ignored. All other bits in the
 <i>options</i> argument must be zero.
 </P>  </P>
 <P>  <P>
 JIT compilation is a heavyweight optimization. It can take some time for  JIT compilation is a heavyweight optimization. It can take some time for
Line 979  When you are finished with a pattern, you can free the Line 987  When you are finished with a pattern, you can free the
 study data by calling <b>pcre_free_study()</b>. This function was added to the  study data by calling <b>pcre_free_study()</b>. This function was added to the
 API for release 8.20. For earlier versions, the memory could be freed with  API for release 8.20. For earlier versions, the memory could be freed with
 <b>pcre_free()</b>, just like the pattern itself. This will still work in cases  <b>pcre_free()</b>, just like the pattern itself. This will still work in cases
where PCRE_STUDY_JIT_COMPILE is not used, but it is advisable to change to thewhere JIT optimization is not used, but it is advisable to change to the new
new function when convenient.function when convenient.
 </P>  </P>
 <P>  <P>
 This is a typical way in which <b>pcre_study</b>() is used (except that in a  This is a typical way in which <b>pcre_study</b>() is used (except that in a
Line 1016  matching. (In 16-bit mode, the bitmap is used for 16-b Line 1024  matching. (In 16-bit mode, the bitmap is used for 16-b
 </P>  </P>
 <P>  <P>
 These two optimizations apply to both <b>pcre_exec()</b> and  These two optimizations apply to both <b>pcre_exec()</b> and
<b>pcre_dfa_exec()</b>. However, they are not used by <b>pcre_exec()</b> if<b>pcre_dfa_exec()</b>, and the information is also used by the JIT compiler.
<b>pcre_study()</b> is called with the PCRE_STUDY_JIT_COMPILE option, andThe optimizations can be disabled by setting the PCRE_NO_START_OPTIMIZE option
just-in-time compiling is successful. The optimizations can be disabled bywhen calling <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>, but if this is done,
setting the PCRE_NO_START_OPTIMIZE option when calling <b>pcre_exec()</b> orJIT execution is also disabled. You might want to do this if your pattern
<b>pcre_dfa_exec()</b>. You might want to do this if your pattern containscontains callouts or (*MARK) and you want to make use of these facilities in
callouts or (*MARK) (which cannot be handled by the JIT compiler), and you wantcases where matching fails. See the discussion of PCRE_NO_START_OPTIMIZE
to make use of these facilities in cases where matching fails. See the 
discussion of PCRE_NO_START_OPTIMIZE 
 <a href="#execoptions">below.</a>  <a href="#execoptions">below.</a>
 <a name="localesupport"></a></P>  <a name="localesupport"></a></P>
 <br><a name="SEC14" href="#TOC1">LOCALE SUPPORT</a><br>  <br><a name="SEC14" href="#TOC1">LOCALE SUPPORT</a><br>
Line 1199  Return 1 if the (?J) or (?-J) option setting is used i Line 1205  Return 1 if the (?J) or (?-J) option setting is used i
 <pre>  <pre>
   PCRE_INFO_JIT    PCRE_INFO_JIT
 </pre>  </pre>
Return 1 if the pattern was studied with the PCRE_STUDY_JIT_COMPILE option, andReturn 1 if the pattern was studied with one of the JIT options, and
 just-in-time compiling was successful. The fourth argument should point to an  just-in-time compiling was successful. The fourth argument should point to an
 <b>int</b> variable. A return value of 0 means that JIT support is not available  <b>int</b> variable. A return value of 0 means that JIT support is not available
in this version of PCRE, or that the pattern was not studied with thein this version of PCRE, or that the pattern was not studied with a JIT option,
PCRE_STUDY_JIT_COMPILE option, or that the JIT compiler could not handle thisor that the JIT compiler could not handle this particular pattern. See the
particular pattern. See the 
 <a href="pcrejit.html"><b>pcrejit</b></a>  <a href="pcrejit.html"><b>pcrejit</b></a>
 documentation for details of what can and cannot be handled.  documentation for details of what can and cannot be handled.
 <pre>  <pre>
   PCRE_INFO_JITSIZE    PCRE_INFO_JITSIZE
 </pre>  </pre>
If the pattern was successfully studied with the PCRE_STUDY_JIT_COMPILE option,If the pattern was successfully studied with a JIT option, return the size of
return the size of the JIT compiled code, otherwise return zero. The fourththe JIT compiled code, otherwise return zero. The fourth argument should point
argument should point to a <b>size_t</b> variable.to a <b>size_t</b> variable.
 <pre>  <pre>
   PCRE_INFO_LASTLITERAL    PCRE_INFO_LASTLITERAL
 </pre>  </pre>
Line 1224  only if it follows something of variable length. For e Line 1229  only if it follows something of variable length. For e
 /^a\d+z\d+/ the returned value is "z", but for /^a\dz\d/ the returned value  /^a\d+z\d+/ the returned value is "z", but for /^a\dz\d/ the returned value
 is -1.  is -1.
 <pre>  <pre>
     PCRE_INFO_MAXLOOKBEHIND
   </pre>
   Return the number of characters (NB not bytes) in the longest lookbehind
   assertion in the pattern. Note that the simple assertions \b and \B require a
   one-character lookbehind. This information is useful when doing multi-segment
   matching using the partial matching facilities.
   <pre>
   PCRE_INFO_MINLENGTH    PCRE_INFO_MINLENGTH
 </pre>  </pre>
 If the pattern was studied and a minimum length for matching subject strings  If the pattern was studied and a minimum length for matching subject strings
Line 1439  In the 16-bit version of this structure, the <i>mark</ Line 1451  In the 16-bit version of this structure, the <i>mark</
 "PCRE_UCHAR16 **".  "PCRE_UCHAR16 **".
 </P>  </P>
 <P>  <P>
The <i>flags</i> field is a bitmap that specifies which of the other fieldsThe <i>flags</i> field is used to specify which of the other fields are set. The
are set. The flag bits are:flag bits are:
 <pre>  <pre>
  PCRE_EXTRA_STUDY_DATA  PCRE_EXTRA_CALLOUT_DATA
   PCRE_EXTRA_EXECUTABLE_JIT    PCRE_EXTRA_EXECUTABLE_JIT
     PCRE_EXTRA_MARK
   PCRE_EXTRA_MATCH_LIMIT    PCRE_EXTRA_MATCH_LIMIT
   PCRE_EXTRA_MATCH_LIMIT_RECURSION    PCRE_EXTRA_MATCH_LIMIT_RECURSION
  PCRE_EXTRA_CALLOUT_DATA  PCRE_EXTRA_STUDY_DATA
   PCRE_EXTRA_TABLES    PCRE_EXTRA_TABLES
   PCRE_EXTRA_MARK  
 </pre>  </pre>
 Other flag bits should be set to zero. The <i>study_data</i> field and sometimes  Other flag bits should be set to zero. The <i>study_data</i> field and sometimes
 the <i>executable_jit</i> field are set in the <b>pcre_extra</b> block that is  the <i>executable_jit</i> field are set in the <b>pcre_extra</b> block that is
 returned by <b>pcre_study()</b>, together with the appropriate flag bits. You  returned by <b>pcre_study()</b>, together with the appropriate flag bits. You
should not set these yourself, but you may add to the block by setting theshould not set these yourself, but you may add to the block by setting other
other fields and their corresponding flag bits.fields and their corresponding flag bits.
 </P>  </P>
 <P>  <P>
 The <i>match_limit</i> field provides a means of preventing PCRE from using up a  The <i>match_limit</i> field provides a means of preventing PCRE from using up a
Line 1472  in the subject string. Line 1484  in the subject string.
 </P>  </P>
 <P>  <P>
 When <b>pcre_exec()</b> is called with a pattern that was successfully studied  When <b>pcre_exec()</b> is called with a pattern that was successfully studied
with the PCRE_STUDY_JIT_COMPILE option, the way that the matching is executedwith a JIT option, the way that the matching is executed is entirely different.
is entirely different. However, there is still the possibility of runawayHowever, there is still the possibility of runaway matching that goes on for a
matching that goes on for a very long time, and so the <i>match_limit</i> valuevery long time, and so the <i>match_limit</i> value is also used in this case
is also used in this case (but in a different way) to limit how long the(but in a different way) to limit how long the matching can continue.
matching can continue. 
 </P>  </P>
 <P>  <P>
 The default value for the limit can be set when PCRE is built; the default  The default value for the limit can be set when PCRE is built; the default
Line 1497  This limit is of use only if it is set smaller than <i Line 1508  This limit is of use only if it is set smaller than <i
 Limiting the recursion depth limits the amount of machine stack that can be  Limiting the recursion depth limits the amount of machine stack that can be
 used, or, when PCRE has been compiled to use memory on the heap instead of the  used, or, when PCRE has been compiled to use memory on the heap instead of the
 stack, the amount of heap memory that can be used. This limit is not relevant,  stack, the amount of heap memory that can be used. This limit is not relevant,
and is ignored, if the pattern was successfully studied withand is ignored, when matching is done using JIT compiled code.
PCRE_STUDY_JIT_COMPILE. 
 </P>  </P>
 <P>  <P>
 The default value for <i>match_limit_recursion</i> can be set when PCRE is  The default value for <i>match_limit_recursion</i> can be set when PCRE is
Line 1549  Option bits for <b>pcre_exec()</b> Line 1559  Option bits for <b>pcre_exec()</b>
 The unused bits of the <i>options</i> argument for <b>pcre_exec()</b> must be  The unused bits of the <i>options</i> argument for <b>pcre_exec()</b> must be
 zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_<i>xxx</i>,  zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_<i>xxx</i>,
 PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NOTEMPTY_ATSTART,  PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NOTEMPTY_ATSTART,
PCRE_NO_START_OPTIMIZE, PCRE_NO_UTF8_CHECK, PCRE_PARTIAL_SOFT, andPCRE_NO_START_OPTIMIZE, PCRE_NO_UTF8_CHECK, PCRE_PARTIAL_HARD, and
PCRE_PARTIAL_HARD.PCRE_PARTIAL_SOFT.
 </P>  </P>
 <P>  <P>
If the pattern was successfully studied with the PCRE_STUDY_JIT_COMPILE option,If the pattern was successfully studied with one of the just-in-time (JIT)
the only supported options for JIT execution are PCRE_NO_UTF8_CHECK,compile options, the only supported options for JIT execution are
PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, and PCRE_NOTEMPTY_ATSTART. Note inPCRE_NO_UTF8_CHECK, PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY,
particular that partial matching is not supported. If an unsupported option isPCRE_NOTEMPTY_ATSTART, PCRE_PARTIAL_HARD, and PCRE_PARTIAL_SOFT. If an
used, JIT execution is disabled and the normal interpretive code inunsupported option is used, JIT execution is disabled and the normal
<b>pcre_exec()</b> is run.interpretive code in <b>pcre_exec()</b> is run.
 <pre>  <pre>
   PCRE_ANCHORED    PCRE_ANCHORED
 </pre>  </pre>
Line 1681  causing performance to suffer, but ensuring that in ca Line 1691  causing performance to suffer, but ensuring that in ca
 "no match", the callouts do occur, and that items such as (*COMMIT) and (*MARK)  "no match", the callouts do occur, and that items such as (*COMMIT) and (*MARK)
 are considered at every possible starting position in the subject string. If  are considered at every possible starting position in the subject string. If
 PCRE_NO_START_OPTIMIZE is set at compile time, it cannot be unset at matching  PCRE_NO_START_OPTIMIZE is set at compile time, it cannot be unset at matching
time.time. The use of PCRE_NO_START_OPTIMIZE disables JIT execution; when it is set,
 matching is always done using interpretively.
 </P>  </P>
 <P>  <P>
 Setting PCRE_NO_START_OPTIMIZE can change the outcome of a matching operation.  Setting PCRE_NO_START_OPTIMIZE can change the outcome of a matching operation.
Line 1715  returned. Line 1726  returned.
 </pre>  </pre>
 When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8  When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8
 string is automatically checked when <b>pcre_exec()</b> is subsequently called.  string is automatically checked when <b>pcre_exec()</b> is subsequently called.
The value of <i>startoffset</i> is also checked to ensure that it points to theThe entire string is checked before any other processing takes place. The value
start of a UTF-8 character. There is a discussion about the validity of UTF-8of <i>startoffset</i> is also checked to ensure that it points to the start of a
strings in theUTF-8 character. There is a discussion about the
 <a href="pcreunicode.html#utf8strings">validity of UTF-8 strings</a>
 in the
 <a href="pcreunicode.html"><b>pcreunicode</b></a>  <a href="pcreunicode.html"><b>pcreunicode</b></a>
 page. If an invalid sequence of bytes is found, <b>pcre_exec()</b> returns the  page. If an invalid sequence of bytes is found, <b>pcre_exec()</b> returns the
 error PCRE_ERROR_BADUTF8 or, if PCRE_PARTIAL_HARD is set and the problem is a  error PCRE_ERROR_BADUTF8 or, if PCRE_PARTIAL_HARD is set and the problem is a
Line 1868  string that it matched that is returned. Line 1881  string that it matched that is returned.
 <P>  <P>
 If the vector is too small to hold all the captured substring offsets, it is  If the vector is too small to hold all the captured substring offsets, it is
 used as far as possible (up to two-thirds of its length), and the function  used as far as possible (up to two-thirds of its length), and the function
returns a value of zero. If neither the actual string matched not any capturedreturns a value of zero. If neither the actual string matched nor any captured
 substrings are of interest, <b>pcre_exec()</b> may be called with <i>ovector</i>  substrings are of interest, <b>pcre_exec()</b> may be called with <i>ovector</i>
 passed as NULL and <i>ovecsize</i> as zero. However, if the pattern contains  passed as NULL and <i>ovecsize</i> as zero. However, if the pattern contains
 back references and the <i>ovector</i> is not big enough to remember the related  back references and the <i>ovector</i> is not big enough to remember the related
Line 2067  time. Line 2080  time.
 <pre>  <pre>
   PCRE_ERROR_JIT_STACKLIMIT (-27)    PCRE_ERROR_JIT_STACKLIMIT (-27)
 </pre>  </pre>
This error is returned when a pattern that was successfully studied using theThis error is returned when a pattern that was successfully studied using a
PCRE_STUDY_JIT_COMPILE option is being matched, but the memory available forJIT compile option is being matched, but the memory available for the
the just-in-time processing stack is not large enough. See thejust-in-time processing stack is not large enough. See the
 <a href="pcrejit.html"><b>pcrejit</b></a>  <a href="pcrejit.html"><b>pcrejit</b></a>
 documentation for more details.  documentation for more details.
 <pre>  <pre>
  PCRE_ERROR_BADMODE (-28)  PCRE_ERROR_BADMODE        (-28)
 </pre>  </pre>
 This error is given if a pattern that was compiled by the 8-bit library is  This error is given if a pattern that was compiled by the 8-bit library is
 passed to a 16-bit library function, or vice versa.  passed to a 16-bit library function, or vice versa.
 <pre>  <pre>
  PCRE_ERROR_BADENDIANNESS (-29)  PCRE_ERROR_BADENDIANNESS  (-29)
 </pre>  </pre>
 This error is given if a pattern that was compiled and saved is reloaded on a  This error is given if a pattern that was compiled and saved is reloaded on a
 host with different endianness. The utility function  host with different endianness. The utility function
Line 2086  host with different endianness. The utility function Line 2099  host with different endianness. The utility function
 so that it runs on the new host.  so that it runs on the new host.
 </P>  </P>
 <P>  <P>
Error numbers -16 to -20 and -22 are not used by <b>pcre_exec()</b>.Error numbers -16 to -20, -22, and -30 are not used by <b>pcre_exec()</b>.
 <a name="badutf8reasons"></a></P>  <a name="badutf8reasons"></a></P>
 <br><b>  <br><b>
 Reason codes for invalid UTF-8 strings  Reason codes for invalid UTF-8 strings
Line 2581  When a recursive subpattern is processed, the matching Line 2594  When a recursive subpattern is processed, the matching
 recursively, using private vectors for <i>ovector</i> and <i>workspace</i>. This  recursively, using private vectors for <i>ovector</i> and <i>workspace</i>. This
 error is given if the output vector is not large enough. This should be  error is given if the output vector is not large enough. This should be
 extremely rare, as a vector of size 1000 is used.  extremely rare, as a vector of size 1000 is used.
   <pre>
     PCRE_ERROR_DFA_BADRESTART (-30)
   </pre>
   When <b>pcre_dfa_exec()</b> is called with the <b>PCRE_DFA_RESTART</b> option,
   some plausibility checks are made on the contents of the workspace, which
   should contain data about the previous partial match. If any of these checks
   fail, this error is given.
 </P>  </P>
 <br><a name="SEC24" href="#TOC1">SEE ALSO</a><br>  <br><a name="SEC24" href="#TOC1">SEE ALSO</a><br>
 <P>  <P>
Line 2599  Cambridge CB2 3QH, England. Line 2619  Cambridge CB2 3QH, England.
 </P>  </P>
 <br><a name="SEC26" href="#TOC1">REVISION</a><br>  <br><a name="SEC26" href="#TOC1">REVISION</a><br>
 <P>  <P>
Last updated: 21 January 2012Last updated: 17 June 2012
 <br>  <br>
 Copyright &copy; 1997-2012 University of Cambridge.  Copyright &copy; 1997-2012 University of Cambridge.
 <br>  <br>

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


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