You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pg...@apache.org on 2007/11/26 18:04:37 UTC

svn commit: r598343 [12/22] - in /httpd/httpd/vendor/pcre/current: ./ doc/ doc/html/ testdata/

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_compile.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_compile.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_compile.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_compile.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_COMPILE 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP,
 .ti +5n
 .B const char **\fIerrptr\fP, int *\fIerroffset\fP,
@@ -16,9 +17,8 @@
 .SH DESCRIPTION
 .rs
 .sp
-This function compiles a regular expression into an internal form. It is the
-same as \fBpcre_compile2()\fP, except for the absence of the \fIerrorcodeptr\fP
-argument. Its arguments are:
+This function compiles a regular expression into an internal form. Its
+arguments are:
 .sp
   \fIpattern\fR       A zero-terminated string containing the
                   regular expression to be compiled
@@ -32,22 +32,13 @@
 .sp
   PCRE_ANCHORED         Force pattern anchoring
   PCRE_AUTO_CALLOUT     Compile automatic callouts
-  PCRE_BSR_ANYCRLF      \eR matches only CR, LF, or CRLF
-  PCRE_BSR_UNICODE      \eR matches all Unicode line endings
   PCRE_CASELESS         Do caseless matching
   PCRE_DOLLAR_ENDONLY   $ not to match newline at end
   PCRE_DOTALL           . matches anything including NL
-  PCRE_DUPNAMES         Allow duplicate names for subpatterns
   PCRE_EXTENDED         Ignore whitespace and # comments
   PCRE_EXTRA            PCRE extra features
                           (not much use currently)
-  PCRE_FIRSTLINE        Force matching to be before newline
   PCRE_MULTILINE        ^ and $ match newlines within data
-  PCRE_NEWLINE_ANY      Recognize any Unicode newline sequence
-  PCRE_NEWLINE_ANYCRLF  Recognize CR, LF, and CRLF as newline sequences
-  PCRE_NEWLINE_CR       Set CR as the newline sequence
-  PCRE_NEWLINE_CRLF     Set CRLF as the newline sequence
-  PCRE_NEWLINE_LF       Set LF as the newline sequence
   PCRE_NO_AUTO_CAPTURE  Disable numbered capturing paren-
                           theses (named ones available)
   PCRE_UNGREEDY         Invert greediness of quantifiers
@@ -60,9 +51,7 @@
 PCRE_NO_UTF8_CHECK.
 .P
 The yield of the function is a pointer to a private data structure that
-contains the compiled pattern, or NULL if an error was detected. Note that
-compiling regular expressions with one version of PCRE for use with a different
-version is not guaranteed to work and may cause crashes.
+contains the compiled pattern, or NULL if an error was detected.
 .P
 There is a complete description of the PCRE native API in the
 .\" HREF

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_config.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_config.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_config.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_config.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_CONFIG 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP);
 .
 .SH DESCRIPTION
@@ -23,17 +24,7 @@
 .sp
   PCRE_CONFIG_LINK_SIZE     Internal link size: 2, 3, or 4
   PCRE_CONFIG_MATCH_LIMIT   Internal resource limit
-  PCRE_CONFIG_MATCH_LIMIT_RECURSION
-                            Internal recursion depth limit
-  PCRE_CONFIG_NEWLINE       Value of the default newline sequence:
-                                13 (0x000d)    for CR
-                                10 (0x000a)    for LF
-                              3338 (0x0d0a)    for CRLF
-                                -2             for ANYCRLF
-                                -1             for ANY
-  PCRE_CONFIG_BSR           Indicates what \eR matches by default:
-                                 0             all Unicode line endings
-                                 1             CR, LF, or CRLF only
+  PCRE_CONFIG_NEWLINE       Value of the newline character
   PCRE_CONFIG_POSIX_MALLOC_THRESHOLD
                             Threshold of return slots, above
                               which \fBmalloc()\fR is used by

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_copy_named_substring.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_copy_named_substring.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_copy_named_substring.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_copy_named_substring.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_COPY_NAMED_SUBSTRING 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_copy_named_substring(const pcre *\fIcode\fP,
 .ti +5n
 .B const char *\fIsubject\fP, int *\fIovector\fP,

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_copy_substring.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_copy_substring.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_copy_substring.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_copy_substring.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_COPY_SUBSTRING 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP,
 .ti +5n
 .B int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP,
@@ -26,7 +27,7 @@
   \fIbuffer\fP        Buffer to receive the string
   \fIbuffersize\fP    Size of buffer
 .sp
-The yield is the length of the string, PCRE_ERROR_NOMEMORY if the buffer was
+The yield is the legnth of the string, PCRE_ERROR_NOMEMORY if the buffer was
 too small, or PCRE_ERROR_NOSUBSTRING if the string number is invalid.
 .P
 There is a complete description of the PCRE native API in the

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_exec.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_exec.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_exec.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_exec.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_EXEC 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
 .ti +5n
 .B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP,
@@ -17,8 +18,7 @@
 .rs
 .sp
 This function matches a compiled regular expression against a given subject
-string, using a matching algorithm that is similar to Perl's. It returns
-offsets to captured substrings. Its arguments are:
+string, and returns offsets to capturing subexpressions. Its arguments are:
 .sp
   \fIcode\fP         Points to the compiled pattern
   \fIextra\fP        Points to an associated \fBpcre_extra\fP structure,
@@ -34,13 +34,6 @@
 The options are:
 .sp
   PCRE_ANCHORED      Match only at the first position
-  PCRE_BSR_ANYCRLF   \eR matches only CR, LF, or CRLF
-  PCRE_BSR_UNICODE   \eR matches all Unicode line endings
-  PCRE_NEWLINE_ANY   Recognize any Unicode newline sequence
-  PCRE_NEWLINE_ANYCRLF  Recognize CR, LF, and CRLF as newline sequences
-  PCRE_NEWLINE_CR    Set CR as the newline sequence
-  PCRE_NEWLINE_CRLF  Set CRLF as the newline sequence
-  PCRE_NEWLINE_LF    Set LF as the newline sequence
   PCRE_NOTBOL        Subject is not the beginning of a line
   PCRE_NOTEOL        Subject is not the end of a line
   PCRE_NOTEMPTY      An empty string is not a valid match
@@ -50,24 +43,18 @@
   PCRE_PARTIAL       Return PCRE_ERROR_PARTIAL for a partial match
 .sp
 There are restrictions on what may appear in a pattern when partial matching is
-requested. For details, see the
-.\" HREF
-\fBpcrepartial\fP
-.\"
-page.
+requested.
 .P
 A \fBpcre_extra\fP structure contains the following fields:
 .sp
   \fIflags\fP        Bits indicating which fields are set
   \fIstudy_data\fP   Opaque data from \fBpcre_study()\fP
-  \fImatch_limit\fP  Limit on internal resource use
-  \fImatch_limit_recursion\fP  Limit on internal recursion depth
+  \fImatch_limit\fP  Limit on internal recursion
   \fIcallout_data\fP Opaque data passed back to callouts
   \fItables\fP       Points to character tables or is NULL
 .sp
 The flag bits are PCRE_EXTRA_STUDY_DATA, PCRE_EXTRA_MATCH_LIMIT,
-PCRE_EXTRA_MATCH_LIMIT_RECURSION, PCRE_EXTRA_CALLOUT_DATA, and
-PCRE_EXTRA_TABLES.
+PCRE_EXTRA_CALLOUT_DATA, and PCRE_EXTRA_TABLES.
 .P
 There is a complete description of the PCRE native API in the
 .\" HREF

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_free_substring.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_free_substring.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_free_substring.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_free_substring.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_FREE_SUBSTRING 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B void pcre_free_substring(const char *\fIstringptr\fP);
 .
 .SH DESCRIPTION

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_free_substring_list.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_free_substring_list.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_free_substring_list.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_free_substring_list.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_FREE_SUBSTRING_LIST 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B void pcre_free_substring_list(const char **\fIstringptr\fP);
 .
 .SH DESCRIPTION

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_fullinfo.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_fullinfo.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_fullinfo.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_fullinfo.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_FULLINFO 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_fullinfo(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
 .ti +5n
 .B int \fIwhat\fP, void *\fIwhere\fP);
@@ -30,14 +31,13 @@
                               -1 for start of string
                                  or after newline, or
                               -2 otherwise
-  PCRE_INFO_FIRSTTABLE      Table of first bytes (after studying)
-  PCRE_INFO_JCHANGED        Return 1 if (?J) was used
+  PCRE_INFO_FIRSTTABLE      Table of first bytes
+                              (after studying)
   PCRE_INFO_LASTLITERAL     Literal last byte required
   PCRE_INFO_NAMECOUNT       Number of named subpatterns
   PCRE_INFO_NAMEENTRYSIZE   Size of name table entry
   PCRE_INFO_NAMETABLE       Pointer to name table
-  PCRE_INFO_OKPARTIAL       Return 1 if partial matching can be tried
-  PCRE_INFO_OPTIONS         Option bits used for compilation
+  PCRE_INFO_OPTIONS         Options used for compilation
   PCRE_INFO_SIZE            Size of compiled pattern
   PCRE_INFO_STUDYSIZE       Size of study data
 .sp

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_get_named_substring.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_get_named_substring.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_get_named_substring.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_get_named_substring.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_GET_NAMED_SUBSTRING 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_get_named_substring(const pcre *\fIcode\fP,
 .ti +5n
 .B const char *\fIsubject\fP, int *\fIovector\fP,
@@ -29,10 +30,9 @@
   \fIstringptr\fP     Where to put the string pointer
 .sp
 The memory in which the substring is placed is obtained by calling
-\fBpcre_malloc()\fP. The convenience function \fBpcre_free_substring()\fP can
-be used to free it when it is no longer needed. The yield of the function is
-the length of the extracted substring, PCRE_ERROR_NOMEMORY if sufficient memory
-could not be obtained, or PCRE_ERROR_NOSUBSTRING if the string name is invalid.
+\fBpcre_malloc()\fP. The yield of the function is the length of the extracted
+substring, PCRE_ERROR_NOMEMORY if sufficient memory could not be obtained, or
+PCRE_ERROR_NOSUBSTRING if the string name is invalid.
 .P
 There is a complete description of the PCRE native API in the
 .\" HREF

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_get_stringnumber.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_get_stringnumber.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_get_stringnumber.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_get_stringnumber.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_GET_STRINGNUMBER 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_get_stringnumber(const pcre *\fIcode\fP,
 .ti +5n
 .B const char *\fIname\fP);
@@ -21,10 +22,7 @@
   \fIname\fP    Name whose number is required
 .sp
 The yield of the function is the number of the parenthesis if the name is
-found, or PCRE_ERROR_NOSUBSTRING otherwise. When duplicate names are allowed
-(PCRE_DUPNAMES is set), it is not defined which of the numbers is returned by
-\fBpcre_get_stringnumber()\fP. You can obtain the complete list by calling
-\fBpcre_get_stringtable_entries()\fP.
+found, or PCRE_ERROR_NOSUBSTRING otherwise.
 .P
 There is a complete description of the PCRE native API in the
 .\" HREF

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_get_substring.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_get_substring.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_get_substring.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_get_substring.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_GET_SUBSTRING 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP,
 .ti +5n
 .B int \fIstringcount\fP, int \fIstringnumber\fP,
@@ -26,10 +27,9 @@
   \fIstringptr\fP     Where to put the string pointer
 .sp
 The memory in which the substring is placed is obtained by calling
-\fBpcre_malloc()\fP. The convenience function \fBpcre_free_substring()\fP can
-be used to free it when it is no longer needed. The yield of the function is
-the length of the substring, PCRE_ERROR_NOMEMORY if sufficient memory could not
-be obtained, or PCRE_ERROR_NOSUBSTRING if the string number is invalid.
+\fBpcre_malloc()\fP. The yield of the function is the length of the substring,
+PCRE_ERROR_NOMEMORY if sufficient memory could not be obtained, or
+PCRE_ERROR_NOSUBSTRING if the string number is invalid.
 .P
 There is a complete description of the PCRE native API in the
 .\" HREF

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_get_substring_list.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_get_substring_list.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_get_substring_list.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_get_substring_list.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_GET_SUBSTRING_LIST 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_get_substring_list(const char *\fIsubject\fP,
 .ti +5n
 .B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);"
@@ -23,12 +24,10 @@
   \fIlistptr\fP       Where to put a pointer to the list
 .sp
 The memory in which the substrings and the list are placed is obtained by
-calling \fBpcre_malloc()\fP. The convenience function
-\fBpcre_free_substring_list()\fP can be used to free it when it is no longer
-needed. A pointer to a list of pointers is put in the variable whose address is
-in \fIlistptr\fP. The list is terminated by a NULL pointer. The yield of the
-function is zero on success or PCRE_ERROR_NOMEMORY if sufficient memory could
-not be obtained.
+calling \fBpcre_malloc()\fP. A pointer to a list of pointers is put in
+the variable whose address is in \fIlistptr\fP. The list is terminated by a
+NULL pointer. The yield of the function is zero on success or
+PCRE_ERROR_NOMEMORY if sufficient memory could not be obtained.
 .P
 There is a complete description of the PCRE native API in the
 .\" HREF

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_info.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_info.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_info.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_info.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_INFO 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B int pcre_info(const pcre *\fIcode\fP, int *\fIoptptr\fP, int
 .B *\fIfirstcharptr\fP);
 .

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_maketables.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_maketables.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_maketables.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_maketables.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_MAKETABLES 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B const unsigned char *pcre_maketables(void);
 .
 .SH DESCRIPTION

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_study.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_study.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_study.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_study.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_STUDY 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B pcre_extra *pcre_study(const pcre *\fIcode\fP, int \fIoptions\fP,
 .ti +5n
 .B const char **\fIerrptr\fP);

Modified: httpd/httpd/vendor/pcre/current/doc/pcre_version.3
URL: http://svn.apache.org/viewvc/httpd/httpd/vendor/pcre/current/doc/pcre_version.3?rev=598343&r1=598342&r2=598343&view=diff
==============================================================================
--- httpd/httpd/vendor/pcre/current/doc/pcre_version.3 (original)
+++ httpd/httpd/vendor/pcre/current/doc/pcre_version.3 Mon Nov 26 09:04:19 2007
@@ -1,4 +1,4 @@
-.TH PCRE_VERSION 3
+.TH PCRE 3
 .SH NAME
 PCRE - Perl-compatible regular expressions
 .SH SYNOPSIS
@@ -7,6 +7,7 @@
 .B #include <pcre.h>
 .PP
 .SM
+.br
 .B char *pcre_version(void);
 .
 .SH DESCRIPTION