Make dump and -u croak on Win32 and Cygwin to avoid confusion
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
index a2b4503..6878ef8 100644 (file)
@@ -157,18 +157,25 @@ arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
 more elaborate constructs
 
 =item REFERENCES
+X<reference> X<dereference> X<dereferencing> X<pointer>
 
 =item COMMON MISTAKES
 
 =item CAVEAT ON PRECEDENCE
+X<dereference, precedence> X<dereferencing, precedence>
 
 =item WHY YOU SHOULD ALWAYS C<use strict>
 
 =item DEBUGGING
+X<data structure, debugging> X<complex data structure, debugging>
+X<AoA, debugging> X<HoA, debugging> X<AoH, debugging> X<HoH, debugging>
+X<array of arrays, debugging> X<hash of arrays, debugging>
+X<array of hashes, debugging> X<hash of hashes, debugging>
 
 =item CODE EXAMPLES
 
 =item ARRAYS OF ARRAYS
+X<array of arrays> X<AoA>
 
 =over 4
 
@@ -181,6 +188,7 @@ more elaborate constructs
 =back
 
 =item HASHES OF ARRAYS
+X<hash of arrays> X<HoA>
 
 =over 4
 
@@ -193,6 +201,7 @@ more elaborate constructs
 =back
 
 =item ARRAYS OF HASHES
+X<array of hashes> X<AoH>
 
 =over 4
 
@@ -205,6 +214,7 @@ more elaborate constructs
 =back
 
 =item HASHES OF HASHES
+X<hass of hashes> X<HoH>
 
 =over 4
 
@@ -217,6 +227,7 @@ more elaborate constructs
 =back
 
 =item MORE ELABORATE RECORDS
+X<record> X<structure> X<struct>
 
 =over 4
 
@@ -673,54 +684,84 @@ Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
 
 =item Discontinuance, Deprecation, and BugFix traps
 
-Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
-Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
-Discontinuance, Deprecation, Discontinuance, Discontinuance
+Symbols starting with "_" no longer forced into main, Double-colon valid
+package separator in variable name, 2nd and 3rd args to C<splice()> are now
+in scalar context, Can't do C<goto> into a block that is optimized away,
+Can't use whitespace as variable name or quote delimiter, C<while/if BLOCK
+BLOCK> gone, C<**> binds tighter than unary minus, C<foreach> changed when
+iterating over a list, C<split> with no args behavior changed, B<-e>
+behavior fixed, C<push> returns number of elements in resulting list, Some
+error messages differ, C<split()> honors subroutine args, Bugs removed
 
 =item Parsing Traps
 
-Parsing, Parsing, Parsing, Parsing, Parsing
+Space between . and = triggers syntax error, Better parsing in perl 5,
+Function parsing, String interpolation of C<$#array> differs, Perl guesses
+on C<map>, C<grep> followed by C<{> if it starts BLOCK or hash ref
 
 =item Numerical Traps
 
-Numerical, Numerical, Numerical, Bitwise string ops
+Formatted output and significant digits, Auto-increment operator over
+signed int limit deleted, Assignment of return values from numeric equality
+tests doesn't work, Bitwise string ops
 
 =item General data type traps
 
-(Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
-(Constants), (Scalars), (Variable Suicide)
+Negative array subscripts now count from the end of array, Setting
+C<$#array> lower now discards array elements, Hashes get defined before
+use, Glob assignment from localized variable to variable, Assigning
+C<undef> to glob, Changes in unary negation (of strings), Modifying of
+constants prohibited, C<defined $var> behavior changed, Variable Suicide
 
 =item Context Traps - scalar, list contexts
 
-(list context), (scalar context), (scalar context), (list, builtin)
+Elements of argument lists for formats evaluated in list context,
+C<caller()> returns false value in scalar context if no caller present,
+Comma operator in scalar context gives scalar context to args, C<sprintf()>
+prototyped as C<($;@)>
 
 =item Precedence Traps
 
-Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
-Precedence
+LHS vs. RHS of any assignment operator, Semantic errors introduced due to
+precedence, Precedence of assignment operators same as the precedence of
+assignment, C<open> requires parentheses around filehandle, C<$:>
+precedence over C<$::> gone, Precedence of file test operators documented,
+C<keys>, C<each>, C<values> are regular named unary operators
 
 =item General Regular Expression Traps using s///, etc.
 
-Regular Expression, Regular Expression, Regular Expression, Regular
-Expression, Regular Expression, Regular Expression, Regular Expression,
-Regular Expression, Regular Expression
+C<s'$lhs'$rhs'> interpolates on either side, C<m//g> attaches its state to
+the searched string, C<m//o> used within an anonymous sub, C<$+> isn't set
+to whole match, Substitution now returns null string if it fails,
+C<s`lhs`rhs`> is now a normal substitution, Stricter parsing of variables
+in regular expressions, C<m?x?> matches only once, Failed matches don't
+reset the match variables
 
 =item Subroutine, Signal, Sorting Traps
 
-(Signals), (Sort Subroutine), warn() won't let you specify a filehandle
+Barewords that used to look like strings look like subroutine calls,
+Reverse is no longer allowed as the name of a sort subroutine, C<warn()>
+won't let you specify a filehandle
 
 =item OS Traps
 
-(SysV), (SysV)
+SysV resets signal handler correctly, SysV C<seek()> appends correctly
 
 =item Interpolation Traps
 
-Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
-Interpolation, Interpolation, Interpolation, Interpolation
+C<@> always interpolates an array in double-quotish strings, Double-quoted
+strings may no longer end with an unescaped $, Arbitrary expressions are
+evaluated inside braces within double quotes, C<$$x> now tries to
+dereference $x, Creation of hashes on the fly with C<eval "EXPR"> requires
+protection, Bugs in earlier perl versions, Array and hash brackets during
+interpolation, Interpolation of C<\$$foo{bar}>, C<qq()> string passed to
+C<eval> will not find string terminator
 
 =item DBM Traps
 
-DBM, DBM
+Perl5 must have been linked with same dbm/ndbm as the default for
+C<dbmopen()>, DBM exceeding limit on the key/value size will cause perl5 to
+exit immediately
 
 =item Unclassified Traps
 
@@ -765,8 +806,8 @@ LIMIT specified
 
 =back
 
-=head2 perlfaq - frequently asked questions about Perl ($Date: 2004/10/05
-22:15:44 $)
+=head2 perlfaq - frequently asked questions about Perl ($Date: 2005/12/30
+15:04:07 $)
 
 =over 4
 
@@ -829,8 +870,8 @@ Interaction, perlfaq9 - Networking
 
 =back
 
-=head2 perlfaq1 - General Questions About Perl ($Revision: 1.15 $, $Date:
-2004/10/11 05:06:29 $)
+=head2 perlfaq1 - General Questions About Perl ($Revision: 1.19 $, $Date:
+2005/12/31 00:54:37 $)
 
 =over 4
 
@@ -844,7 +885,7 @@ Interaction, perlfaq9 - Networking
 
 =item Which version of Perl should I use?
 
-=item What are perl4 and perl5?
+=item What are perl4, perl5, or perl6?
 
 =item What is Ponie?
 
@@ -878,8 +919,8 @@ Scheme, or Tcl?
 
 =back
 
-=head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.29 $,
-$Date: 2004/10/25 18:37:23 $)
+=head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.38 $,
+$Date: 2005/12/31 00:54:37 $)
 
 =over 4
 
@@ -887,13 +928,13 @@ $Date: 2004/10/25 18:37:23 $)
 
 =over 4
 
-=item What machines support Perl?  Where do I get it?
+=item What machines support perl?  Where do I get it?
 
-=item How can I get a binary version of Perl?
+=item How can I get a binary version of perl?
 
-=item I don't have a C compiler on my system.  How can I compile perl?
+=item I don't have a C compiler. How can I build my own Perl interpreter?
 
-=item I copied the Perl binary from one machine to another, but scripts
+=item I copied the perl binary from one machine to another, but scripts
 don't work.
 
 =item I grabbed the sources and tried to compile but gdbm/dynamic
@@ -922,7 +963,7 @@ References, Tutorials, Task-Oriented, Special Topics
 
 =item Archives of comp.lang.perl.misc
 
-=item Where can I buy a commercial version of Perl?
+=item Where can I buy a commercial version of perl?
 
 =item Where do I send bug reports?
 
@@ -934,8 +975,8 @@ References, Tutorials, Task-Oriented, Special Topics
 
 =back
 
-=head2 perlfaq3 - Programming Tools ($Revision: 1.41 $, $Date: 2004/11/03
-22:45:32 $)
+=head2 perlfaq3 - Programming Tools ($Revision: 1.56 $, $Date: 2005/12/31
+00:54:37 $)
 
 =over 4
 
@@ -963,10 +1004,10 @@ References, Tutorials, Task-Oriented, Special Topics
 
 =item Is there an IDE or Windows Perl Editor?
 
-Eclipse, Komodo, Open Perl IDE, OptiPerl, PerlBuilder, visiPerl+, Visual
-Perl, GNU Emacs, MicroEMACS, XEmacs, Jed, Elvis, Vile, Vim, Codewright,
-MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, Affrus, Alpha, BBEdit and
-BBEdit Lite
+Eclipse, Enginsite, Komodo, Open Perl IDE, OptiPerl, PerlBuilder,
+visiPerl+, Visual Perl, Zeus, GNU Emacs, MicroEMACS, XEmacs, Jed, Elvis,
+Vile, Vim, Codewright, MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, Affrus,
+Alpha, BBEdit and BBEdit Lite
 
 =item Where can I get Perl macros for vi?
 
@@ -976,8 +1017,6 @@ BBEdit Lite
 
 =item How can I use X or Tk with Perl?
 
-=item How can I generate simple menus without using CGI or Tk?
-
 =item How can I make my Perl program run faster?
 
 =item How can I make my Perl program take less memory?
@@ -1007,10 +1046,10 @@ stringification, Pass by reference, Tie large variables to disk
 
 =item Where can I learn about object-oriented Perl programming?
 
-=item Where can I learn about linking C with Perl? [h2xs, xsubpp]
+=item Where can I learn about linking C with Perl?
 
-=item I've read perlembed, perlguts, etc., but I can't embed perl in
-my C program; what am I doing wrong?
+=item I've read perlembed, perlguts, etc., but I can't embed perl in my C
+program; what am I doing wrong?
 
 =item When I tried to run my script, I got this message. What does it mean?
 
@@ -1022,8 +1061,8 @@ my C program; what am I doing wrong?
 
 =back
 
-=head2 perlfaq4 - Data Manipulation ($Revision: 1.56 $, $Date: 2004/11/03
-22:47:56 $)
+=head2 perlfaq4 - Data Manipulation ($Revision: 1.73 $, $Date: 2005/12/31
+00:54:37 $)
 
 =over 4
 
@@ -1146,8 +1185,6 @@ the tag
 
 =item How can I remove duplicate elements from a list or array?
 
-a), b), c), d), e)
-
 =item How can I tell whether a certain element is contained in a list or
 array?
 
@@ -1241,8 +1278,8 @@ array of hashes or arrays?
 
 =back
 
-=head2 perlfaq5 - Files and Formats ($Revision: 1.31 $, $Date: 2004/02/07
-04:29:50 $)
+=head2 perlfaq5 - Files and Formats ($Revision: 1.42 $, $Date: 2005/12/31
+00:54:37 $)
 
 =over 4
 
@@ -1251,83 +1288,120 @@ array of hashes or arrays?
 =over 4
 
 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
+X<flush> X<buffer> X<unbuffer> X<autoflush>
 
 =item How do I change one line in a file/delete a line in a file/insert a
 line in the middle of a file/append to the beginning of a file?
+X<file, editing>
 
 =item How do I count the number of lines in a file?
+X<file, counting lines> X<lines> X<line>
 
 =item How can I use Perl's C<-i> option from within a program?
+X<-i> X<in-place>
+
+=item How can I copy a file?
+X<copy> X<file, copy>
 
 =item How do I make a temporary file name?
+X<file, temporary>
 
 =item How can I manipulate fixed-record-length files?
+X<fixed-length> X<file, fixed-length records>
 
 =item How can I make a filehandle local to a subroutine?  How do I pass
 filehandles between subroutines?  How do I make an array of filehandles?
+X<filehandle, local> X<filehandle, passing> X<filehandle, reference>
 
 =item How can I use a filehandle indirectly?
+X<filehandle, indirect>
 
 =item How can I set up a footer format to be used with write()?
+X<footer>
 
 =item How can I write() into a string?
+X<write, into a string>
 
 =item How can I output my numbers with commas added?
+X<number, commify>
 
 =item How can I translate tildes (~) in a filename?
+X<tilde> X<tilde expansion>
 
 =item How come when I open a file read-write it wipes it out?
+X<clobber> X<read-write> X<clobbering> X<truncate> X<truncating>
 
 =item Why do I sometimes get an "Argument list too long" when I use
 E<lt>*E<gt>?
+X<argument list too long>
 
 =item Is there a leak/bug in glob()?
+X<glob>
 
 =item How can I open a file with a leading ">" or trailing blanks?
+X<filename, special characters>
 
 =item How can I reliably rename a file?
+X<rename> X<mv> X<move> X<file, rename> X<ren>
 
 =item How can I lock a file?
+X<lock> X<file, lock> X<flock>
 
 =item Why can't I just open(FH, "E<gt>file.lock")?
+X<lock, lockfile race condition>
 
 =item I still don't get locking.  I just want to increment the number in
 the file.  How can I do this?
+X<counter> X<file, counter>
 
 =item All I want to do is append a small amount of text to the end of a
 file.  Do I still have to use locking?
+X<append> X<file, append>
 
 =item How do I randomly update a binary file?
+X<file, binary patch>
 
 =item How do I get a file's timestamp in perl?
+X<timestamp> X<file, timestamp>
 
 =item How do I set a file's timestamp in perl?
+X<timestamp> X<file, timestamp>
 
 =item How do I print to more than one file at once?
+X<print, to multiple files>
 
 =item How can I read in an entire file all at once?
+X<slurp> X<file, slurping>
 
 =item How can I read in a file by paragraphs?
+X<file, reading by paragraphs>
 
 =item How can I read a single character from a file?  From the keyboard?
+X<getc> X<file, reading one character at a time>
 
 =item How can I tell whether there's a character waiting on a filehandle?
 
 =item How do I do a C<tail -f> in perl?
+X<tail>
 
 =item How do I dup() a filehandle in Perl?
+X<dup>
 
 =item How do I close a file descriptor by number?
+X<file, closing file descriptors>
 
 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
 `C:\temp\foo.exe` work?
+X<filename, DOS issues>
 
 =item Why doesn't glob("*.*") get all the files?
+X<glob>
 
 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
 protected files?  Isn't this a bug in Perl?
 
 =item How do I select a random line from a file?
+X<file, selecting a random line>
 
 =item Why do I get weird spaces when I print an array of lines?
 
@@ -1337,8 +1411,8 @@ protected files?  Isn't this a bug in Perl?
 
 =back
 
-=head2 perlfaq6 - Regular Expressions ($Revision: 1.27 $, $Date: 2004/11/03
-22:52:16 $)
+=head2 perlfaq6 - Regular Expressions ($Revision: 1.38 $, $Date: 2005/12/31
+00:54:37 $)
 
 =over 4
 
@@ -1348,53 +1422,79 @@ protected files?  Isn't this a bug in Perl?
 
 =item How can I hope to use regular expressions without creating illegible
 and unmaintainable code?
+X<regex, legibility> X<regexp, legibility>
+X<regular expression, legibility> X</x>
 
 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
 
 =item I'm having trouble matching over more than one line.  What's wrong?
+X<regex, multiline> X<regexp, multiline> X<regular expression, multiline>
 
 =item How can I pull out lines between two patterns that are themselves on
 different lines?
+X<..>
 
 =item I put a regular expression into $/ but it didn't work. What's wrong?
+X<$/, regexes in> X<$INPUT_RECORD_SEPARATOR, regexes in>
+X<$RS, regexes in>
 
 =item How do I substitute case insensitively on the LHS while preserving
 case on the RHS?
+X<replace, case preserving> X<substitute, case preserving>
+X<substitution, case preserving> X<s, case preserving>
 
 =item How can I make C<\w> match national character sets?
+X<\w>
 
 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
+X<alpha>
 
 =item How can I quote a variable to use in a regex?
+X<regex, escaping> X<regexp, escaping> X<regular expression, escaping>
 
 =item What is C</o> really for?
+X</o>
 
 =item How do I use a regular expression to strip C style comments from a
 file?
 
 =item Can I use Perl regular expressions to match balanced text?
+X<regex, matching balanced test> X<regexp, matching balanced test>
+X<regular expression, matching balanced test>
 
 =item What does it mean that regexes are greedy?  How can I get around it?
+X<greedy> X<greediness>
 
 =item How do I process each word on each line?
+X<word>
 
 =item How can I print out a word-frequency or line-frequency summary?
 
 =item How can I do approximate matching?
+X<match, approximate> X<matching, approximate>
 
 =item How do I efficiently match many regular expressions at once?
+X<regex, efficiency> X<regexp, efficiency>
+X<regular expression, efficiency>
 
 =item Why don't word-boundary searches with C<\b> work for me?
+X<\b>
 
 =item Why does using $&, $`, or $' slow my program down?
+X<$MATCH> X<$&> X<$POSTMATCH> X<$'> X<$PREMATCH> X<$`>
 
 =item What good is C<\G> in a regular expression?
+X<\G>
 
 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
+X<DFA> X<NFA> X<POSIX>
 
 =item What's wrong with using grep in a void context?
+X<grep>
 
 =item How can I match strings with multibyte characters?
+X<regex, and multibyte characters> X<regexp, and multibyte characters>
+X<regular expression, and multibyte characters>
 
 =item How do I match a pattern that is supplied by the user?
 
@@ -1404,8 +1504,8 @@ file?
 
 =back
 
-=head2 perlfaq7 - General Perl Language Issues ($Revision: 1.18 $, $Date:
-2004/11/03 22:54:08 $)
+=head2 perlfaq7 - General Perl Language Issues ($Revision: 1.28 $, $Date:
+2005/12/31 00:54:37 $)
 
 =over 4
 
@@ -1486,8 +1586,8 @@ methods?
 
 =back
 
-=head2 perlfaq8 - System Interaction ($Revision: 1.22 $, $Date: 2004/10/05
-22:13:49 $)
+=head2 perlfaq8 - System Interaction ($Revision: 1.27 $, $Date: 2005/12/31
+00:54:37 $)
 
 =over 4
 
@@ -1616,7 +1716,7 @@ search path?
 
 =back
 
-=head2 perlfaq9 - Networking ($Revision: 1.16 $, $Date: 2004/10/30 12:20:59
+=head2 perlfaq9 - Networking ($Revision: 1.28 $, $Date: 2005/12/31 00:54:37
 $)
 
 =over 4
@@ -1672,7 +1772,9 @@ CGI script to do bad things?
 
 =item How do I read mail?
 
-=item How do I find out my hostname/domainname/IP address?
+=item How do I find out my hostname, domainname, or IP address?
+X<hostname, domainname, IP address, host, domain, hostfqdn, inet_ntoa,
+gethostbyname, Socket, Net::Domain, Sys::Hostname>
 
 =item How do I fetch a news article or the active newsgroups?
 
@@ -1695,30 +1797,50 @@ CGI script to do bad things?
 =over 4
 
 =item Declarations
+X<declaration> X<undef> X<undefined> X<uninitialized>
 
 =item Comments
+X<comment> X<#>
 
 =item Simple Statements
+X<statement> X<semicolon> X<expression> X<;>
 
 =item Truth and Falsehood
+X<truth> X<falsehood> X<true> X<false> X<!> X<not> X<negation> X<0>
 
 =item Statement Modifiers
+X<statement modifier> X<modifier> X<if> X<unless> X<while>
+X<until> X<foreach> X<for>
 
 =item Compound Statements
+X<statement, compound> X<block> X<bracket, curly> X<curly bracket> X<brace>
+X<{> X<}> X<if> X<unless> X<while> X<until> X<foreach> X<for> X<continue>
 
 =item Loop Control
+X<loop control> X<loop, control> X<next> X<last> X<redo> X<continue>
 
 =item For Loops
+X<for> X<foreach>
 
 =item Foreach Loops
+X<for> X<foreach>
+
+=item Basic BLOCKs
+X<block>
 
-=item Basic BLOCKs and Switch Statements
+=item Switch statements
+X<switch> X<case> X<given> X<when> X<default>
+
+o, o, o, o, o, o, o
 
 =item Goto
+X<goto>
 
 =item PODs: Embedded Documentation
+X<POD> X<documentation>
 
 =item Plain Old Comments (Not!)
+X<comment> X<line> X<#> X<preprocessor> X<eval>
 
 =back
 
@@ -1733,20 +1855,27 @@ CGI script to do bad things?
 =over 4
 
 =item Variable names
+X<variable, name> X<variable name> X<data type> X<type>
 
 =item Context
+X<context> X<scalar context> X<list context>
 
 =item Scalar values
+X<scalar> X<number> X<string> X<reference>
 
 =item Scalar value constructors
+X<scalar, literal> X<scalar, constant>
 
 =item List value constructors
+X<list>
 
 =item Subscripts
 
 =item Slices
+X<slice> X<array, slice> X<hash, slice>
 
 =item Typeglobs and Filehandles
+X<typeglob> X<filehandle> X<*>
 
 =back
 
@@ -1762,92 +1891,149 @@ CGI script to do bad things?
 
 =over 4
 
-=item Operator Precedence and Associativity
+=item Operator Precedence and Associativity 
+X<operator, precedence> X<precedence> X<associativity>
 
 =item Terms and List Operators (Leftward)
+X<list operator> X<operator, list> X<term>
 
 =item The Arrow Operator
+X<arrow> X<dereference> X<< -> >>
 
 =item Auto-increment and Auto-decrement
+X<increment> X<auto-increment> X<++> X<decrement> X<auto-decrement> X<-->
 
 =item Exponentiation
+X<**> X<exponentiation> X<power>
 
 =item Symbolic Unary Operators
+X<unary operator> X<operator, unary>
 
 =item Binding Operators
+X<binding> X<operator, binding> X<=~> X<!~>
 
 =item Multiplicative Operators
+X<operator, multiplicative>
 
 =item Additive Operators
+X<operator, additive>
 
 =item Shift Operators
+X<shift operator> X<operator, shift> X<<< << >>>
+X<<< >> >>> X<right shift> X<left shift> X<bitwise shift>
+X<shl> X<shr> X<shift, right> X<shift, left>
 
 =item Named Unary Operators
+X<operator, named unary>
 
 =item Relational Operators
+X<relational operator> X<operator, relational>
 
 =item Equality Operators
+X<equality> X<equal> X<equals> X<operator, equality>
 
 =item Bitwise And
+X<operator, bitwise, and> X<bitwise and> X<&>
 
 =item Bitwise Or and Exclusive Or
+X<operator, bitwise, or> X<bitwise or> X<|> X<operator, bitwise, xor>
+X<bitwise xor> X<^>
 
 =item C-style Logical And
+X<&&> X<logical and> X<operator, logical, and>
 
 =item C-style Logical Or
+X<||> X<operator, logical, or>
 
 =item C-style Logical Defined-Or
+X<//> X<operator, logical, defined-or>
 
 =item Range Operators
+X<operator, range> X<range> X<..> X<...>
 
 =item Conditional Operator
+X<operator, conditional> X<operator, ternary> X<ternary> X<?:>
 
 =item Assignment Operators
+X<assignment> X<operator, assignment> X<=> X<**=> X<+=> X<*=> X<&=>
+X<<< <<= >>> X<&&=> X<-=> X</=> X<|=> X<<< >>= >>> X<||=> X<//=> X<.=>
+X<%=> X<^=> X<x=>
 
 =item Comma Operator
+X<comma> X<operator, comma> X<,>
 
 =item List Operators (Rightward)
+X<operator, list, rightward> X<list operator>
 
 =item Logical Not
+X<operator, logical, not> X<not>
 
 =item Logical And
+X<operator, logical, and> X<and>
 
 =item Logical or, Defined or, and Exclusive Or
+X<operator, logical, or> X<operator, logical, xor> X<operator, logical,
+err>
+X<operator, logical, defined or> X<operator, logical, exclusive or>
+X<or> X<xor> X<err>
 
 =item C Operators Missing From Perl
+X<operator, missing from perl> X<&> X<*>
+X<typecasting> X<(TYPE)>
 
 unary &, unary *, (TYPE)
 
 =item Quote and Quote-like Operators
+X<operator, quote> X<operator, quote-like> X<q> X<qq> X<qx> X<qw> X<m> 
+X<qr> X<s> X<tr> X<'> X<''> X<"> X<""> X<//> X<`> X<``> X<<< << >>>
+X<escape sequence> X<escape>
 
 =item Regexp Quote-Like Operators
-
-?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
-qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
-s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
-y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
+X<operator, regexp>
+
+?PATTERN? X<?>, m/PATTERN/cgimosx X<m> X<operator, match>  X<regexp,
+options> X<regexp> X<regex, options> X<regex>  X</c> X</i> X</m> X</o>
+X</s> X</x>, /PATTERN/cgimosx, q/STRING/ X<q> X<quote, double> X<'> X<''>,
+C<'STRING'>, qq/STRING/ X<qq> X<quote, double> X<"> X<"">, "STRING",
+qr/STRING/imosx X<qr> X</i> X</m> X</o> X</s> X</x>, qx/STRING/ X<qx> X<`>
+X<``> X<backtick>, `STRING`, qw/STRING/ X<qw> X<quote, list> X<quote,
+words>, s/PATTERN/REPLACEMENT/egimosx X<substitute> X<substitution>
+X<replace> X<regexp, replace> X<regexp, substitute> X</e> X</g> X</i> X</m>
+X</o> X</s> X</x>, tr/SEARCHLIST/REPLACEMENTLIST/cds X<tr> X<y>
+X<transliterate> X</c> X</d> X</s>, y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
+X<here-doc> X<heredoc> X<here-document> X<<< << >>>
 
 =item Gory details of parsing quoted constructs
+X<quote, gory details>
 
-Finding the end, Removal of backslashes before delimiters, Interpolation,
-C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
-C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
-C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
-regular expressions
+Finding the end, Removal of backslashes before delimiters, Interpolation
+X<interpolation>, C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>,
+C<q//>, C<"">, C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>,
+C</RE/>, C<m/RE/>, C<s/RE/foo/>,, Interpolation of regular expressions
+X<regexp, interpolation>, Optimization of regular expressions X<regexp,
+optimization>
 
 =item I/O Operators
+X<operator, i/o> X<operator, io> X<io> X<while> X<filehandle>
+X<< <> >> X<@ARGV>
 
 =item Constant Folding
+X<constant folding> X<folding>
 
 =item No-ops
+X<no-op> X<nop>
 
 =item Bitwise String Operators
+X<operator, bitwise, string>
 
 =item Integer Arithmetic
+X<integer>
 
 =item Floating-point Arithmetic
+X<floating-point> X<floating point> X<float> X<real>
 
 =item Bigger Numbers
+X<number, arbitrary precision>
 
 =back
 
@@ -1864,30 +2050,44 @@ regular expressions
 =over 4
 
 =item Private Variables via my()
+X<my> X<variable, lexical> X<lexical> X<lexical variable> X<scope, lexical>
+X<lexical scope> X<attributes, my>
 
 =item Persistent Private Variables
+X<static> X<variable, persistent> X<variable, static> X<closure>
 
 =item Temporary Values via local()
+X<local> X<scope, dynamic> X<dynamic scope> X<variable, local>
+X<variable, temporary>
 
 =item Lvalue subroutines
+X<lvalue> X<subroutine, lvalue>
 
 Lvalue subroutines are EXPERIMENTAL
 
 =item Passing Symbol Table Entries (typeglobs)
+X<typeglob> X<*>
 
 =item When to Still Use local()
+X<local> X<variable, local>
 
 =item Pass by Reference
+X<pass by reference> X<pass-by-reference> X<reference>
 
 =item Prototypes
+X<prototype> X<subroutine, prototype>
 
 =item Constant Functions
+X<constant>
 
 =item Overriding Built-in Functions
+X<built-in> X<override> X<CORE> X<CORE::GLOBAL>
 
 =item Autoloading
+X<autoloading> X<AUTOLOAD>
 
 =item Subroutine Attributes
+X<attribute> X<subroutine, attribute> X<attrs>
 
 =back
 
@@ -1904,99 +2104,173 @@ Lvalue subroutines are EXPERIMENTAL
 =over 4
 
 =item Perl Functions by Category
-
-Functions for SCALARs or strings, Regular expressions and pattern matching,
-Numeric functions, Functions for real @ARRAYs, Functions for list data,
-Functions for real %HASHes, Input and output functions, Functions for fixed
-length data or records, Functions for filehandles, files, or directories,
-Keywords related to the control flow of your perl program, Keywords related
-to scoping, Miscellaneous functions, Functions for processes and process
-groups, Keywords related to perl modules, Keywords related to classes and
-object-orientedness, Low-level socket functions, System V interprocess
-communication functions, Fetching user and group info, Fetching network
-info, Time-related functions, Functions new in perl5, Functions obsoleted
-in perl5
+X<function>
+
+Functions for SCALARs or strings X<scalar> X<string> X<character>, Regular
+expressions and pattern matching X<regular expression> X<regex> X<regexp>,
+Numeric functions X<numeric> X<number> X<trigonometric> X<trigonometry>,
+Functions for real @ARRAYs X<array>, Functions for list data X<list>,
+Functions for real %HASHes X<hash>, Input and output functions X<I/O>
+X<input> X<output> X<dbm>, Functions for fixed length data or records,
+Functions for filehandles, files, or directories X<file> X<filehandle>
+X<directory> X<pipe> X<link> X<symlink>, Keywords related to the control
+flow of your Perl program X<control flow>, Keywords related to switch,
+Keywords related to scoping, Miscellaneous functions, Functions for
+processes and process groups X<process> X<pid> X<process id>, Keywords
+related to perl modules X<module>, Keywords related to classes and
+object-orientedness X<object> X<class> X<package>, Low-level socket
+functions X<socket> X<sock>, System V interprocess communication functions
+X<IPC> X<System V> X<semaphore> X<shared memory> X<memory> X<message>,
+Fetching user and group info X<user> X<group> X<password> X<uid> X<gid> 
+X<passwd> X</etc/passwd>, Fetching network info X<network> X<protocol>
+X<host> X<hostname> X<IP> X<address> X<service>, Time-related functions
+X<time> X<date>, Functions new in perl5 X<perl5>, Functions obsoleted in
+perl5
 
 =item Portability
+X<portability> X<Unix> X<portable>
 
 =item Alphabetical Listing of Perl Functions
 
--I<X> FILEHANDLE, -I<X> EXPR, -I<X>, abs VALUE, abs, accept
-NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
-binmode FILEHANDLE, LAYER, binmode FILEHANDLE, bless REF,CLASSNAME, bless
-REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE, chomp(
-LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr NUMBER,
-chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
-connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
-dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
-EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
-each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
-exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
-FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
-fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
-getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
-NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
-NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
-ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
-getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
-getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
-STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
-endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
-getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
-goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
-import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
-FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
-last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
-link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
-lock THING, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map
-EXPR,LIST, mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget
-KEY,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my
-TYPE EXPR, my EXPR : ATTRS, my TYPE EXPR : ATTRS, next LABEL, next, no
-Module VERSION LIST, no Module VERSION, no Module LIST, no Module, oct
-EXPR, oct, open FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open
-FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE,
-opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR TYPE, our EXPR :
-ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST, package NAMESPACE,
-package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos,
-print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST,
-printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/,
-qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta,
-rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
-FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
-readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
-ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
-require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
-DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
-rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
-DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
-semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
-SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
-WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
-shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
-shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
-EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
-SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
-sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
-splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
-/PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, format
-parameter index, flags, vector flag, (minimum) width, precision, or maximum
-width, size, order of arguments, sqrt EXPR, sqrt, srand EXPR, srand, stat
-FILEHANDLE, stat EXPR, stat, study SCALAR, study, sub NAME BLOCK, sub NAME
-(PROTO) BLOCK, sub NAME : ATTRS BLOCK, sub NAME (PROTO) : ATTRS BLOCK,
-substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
-EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall NUMBER, LIST, sysopen
-FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
-FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
-FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
-FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
-syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
-VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
-FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
-ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
-TEMPLATE,EXPR, unpack TEMPLATE, untie VARIABLE, unshift ARRAY,LIST, use
-Module VERSION LIST, use Module VERSION, use Module LIST, use Module, use
-VERSION, utime LIST, values HASH, vec EXPR,OFFSET,BITS, wait, waitpid
-PID,FLAGS, wantarray, warn LIST, write FILEHANDLE, write EXPR, write, y///
+-I<X> FILEHANDLE
+X<-r>X<-w>X<-x>X<-o>X<-R>X<-W>X<-X>X<-O>X<-e>X<-z>X<-s>X<-f>X<-d>X<-l>X<-p>
+X<-S>X<-b>X<-c>X<-t>X<-u>X<-g>X<-k>X<-T>X<-B>X<-M>X<-A>X<-C>, -I<X> EXPR,
+-I<X>, abs VALUE X<abs> X<absolute>, abs, accept NEWSOCKET,GENERICSOCKET
+X<accept>, alarm SECONDS X<alarm> X<SIGALRM> X<timer>, alarm, atan2 Y,X
+X<atan2> X<arctangent> X<tan> X<tangent>, bind SOCKET,NAME X<bind>, binmode
+FILEHANDLE, LAYER X<binmode> X<binary> X<text> X<DOS> X<Windows>, binmode
+FILEHANDLE, bless REF,CLASSNAME X<bless>, bless REF, break, caller EXPR
+X<caller> X<call stack> X<stack> X<stack trace>, caller, chdir EXPR
+X<chdir> X<cd>, chdir FILEHANDLE, chdir DIRHANDLE, chdir, chmod LIST
+X<chmod> X<permission> X<mode>, chomp VARIABLE X<chomp>
+X<INPUT_RECORD_SEPARATOR> X<$/> X<newline> X<eol>, chomp( LIST ), chomp,
+chop VARIABLE X<chop>, chop( LIST ), chop, chown LIST X<chown> X<owner>
+X<user> X<group>, chr NUMBER X<chr> X<character> X<ASCII> X<Unicode>, chr,
+chroot FILENAME X<chroot> X<root>, chroot, close FILEHANDLE X<close>,
+close, closedir DIRHANDLE X<closedir>, connect SOCKET,NAME X<connect>,
+continue BLOCK X<continue>, continue, cos EXPR X<cos> X<cosine> X<acos>
+X<arccosine>, cos, crypt PLAINTEXT,SALT X<crypt> X<digest> X<hash> X<salt>
+X<plaintext> X<password> X<decrypt> X<cryptography> X<passwd>, dbmclose
+HASH X<dbmclose>, dbmopen HASH,DBNAME,MASK X<dbmopen> X<dbm> X<ndbm>
+X<sdbm> X<gdbm>, defined EXPR X<defined> X<undef> X<undefined>, defined,
+delete EXPR X<delete>, die LIST X<die> X<throw> X<exception> X<raise> X<$@>
+X<abort>, do BLOCK X<do> X<block>, do SUBROUTINE(LIST) X<do>, do EXPR
+X<do>, dump LABEL X<dump> X<core> X<undump>, dump, each HASH X<each>
+X<hash, iterator>, eof FILEHANDLE X<eof> X<end of file> X<end-of-file>, eof
+(), eof, eval EXPR X<eval> X<try> X<catch> X<evaluate> X<parse> X<execute>,
+eval BLOCK, eval, exec LIST X<exec> X<execute>, exec PROGRAM LIST, exists
+EXPR X<exists> X<autovivification>, exit EXPR X<exit> X<terminate>
+X<abort>, exit, exp EXPR X<exp> X<exponential> X<antilog> X<antilogarithm>
+X<e>, exp, fcntl FILEHANDLE,FUNCTION,SCALAR X<fcntl>, fileno FILEHANDLE
+X<fileno>, flock FILEHANDLE,OPERATION X<flock> X<lock> X<locking>, fork
+X<fork> X<child> X<parent>, format X<format>, formline PICTURE,LIST
+X<formline>, getc FILEHANDLE X<getc> X<getchar>, getc, getlogin X<getlogin>
+X<login>, getpeername SOCKET X<getpeername> X<peer>, getpgrp PID X<getpgrp>
+X<group>, getppid X<getppid> X<parent> X<pid>, getpriority WHICH,WHO
+X<getpriority> X<priority> X<nice>, getpwnam NAME X<getpwnam> X<getgrnam>
+X<gethostbyname> X<getnetbyname> X<getprotobyname> X<getpwuid> X<getgrgid>
+X<getservbyname> X<gethostbyaddr> X<getnetbyaddr> X<getprotobynumber>
+X<getservbyport> X<getpwent> X<getgrent> X<gethostent> X<getnetent>
+X<getprotoent> X<getservent> X<setpwent> X<setgrent> X<sethostent>
+X<setnetent> X<setprotoent> X<setservent> X<endpwent> X<endgrent>
+X<endhostent> X<endnetent> X<endprotoent> X<endservent>, getgrnam NAME,
+gethostbyname NAME, getnetbyname NAME, getprotobyname NAME, getpwuid UID,
+getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr ADDR,ADDRTYPE,
+getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER, getservbyport
+PORT,PROTO, getpwent, getgrent, gethostent, getnetent, getprotoent,
+getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent STAYOPEN,
+setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent, endhostent,
+endnetent, endprotoent, endservent, getsockname SOCKET X<getsockname>,
+getsockopt SOCKET,LEVEL,OPTNAME X<getsockopt>, glob EXPR X<glob>
+X<wildcard> X<filename, expansion> X<expand>, glob, gmtime EXPR X<gmtime>
+X<UTC> X<Greenwich>, gmtime, goto LABEL X<goto> X<jump> X<jmp>, goto EXPR,
+goto &NAME, grep BLOCK LIST X<grep>, grep EXPR,LIST, hex EXPR X<hex>
+X<hexadecimal>, hex, import LIST X<import>, index STR,SUBSTR,POSITION
+X<index> X<indexOf> X<InStr>, index STR,SUBSTR, int EXPR X<int> X<integer>
+X<truncate> X<trunc>, int, ioctl FILEHANDLE,FUNCTION,SCALAR X<ioctl>, join
+EXPR,LIST X<join>, keys HASH X<keys> X<key>, kill SIGNAL, LIST X<kill>
+X<signal>, last LABEL X<last> X<break>, last, lc EXPR X<lc> X<lowercase>,
+lc, lcfirst EXPR X<lcfirst> X<lowercase>, lcfirst, length EXPR X<length>
+X<size>, length, link OLDFILE,NEWFILE X<link>, listen SOCKET,QUEUESIZE
+X<listen>, local EXPR X<local>, localtime EXPR X<localtime>, localtime,
+lock THING X<lock>, log EXPR X<log> X<logarithm> X<e> X<ln> X<base>, log,
+lstat EXPR X<lstat>, lstat, m//, map BLOCK LIST X<map>, map EXPR,LIST,
+mkdir FILENAME,MASK X<mkdir> X<md> X<directory, create>, mkdir FILENAME,
+mkdir, msgctl ID,CMD,ARG X<msgctl>, msgget KEY,FLAGS X<msgget>, msgrcv
+ID,VAR,SIZE,TYPE,FLAGS X<msgrcv>, msgsnd ID,MSG,FLAGS X<msgsnd>, my EXPR
+X<my>, my TYPE EXPR, my EXPR : ATTRS, my TYPE EXPR : ATTRS, next LABEL
+X<next> X<continue>, next, no Module VERSION LIST X<no>, no Module VERSION,
+no Module LIST, no Module, oct EXPR X<oct> X<octal> X<hex> X<hexadecimal>
+X<binary> X<bin>, oct, open FILEHANDLE,EXPR X<open> X<pipe> X<file, open>
+X<fopen>, open FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST, open
+FILEHANDLE,MODE,REFERENCE, open FILEHANDLE, opendir DIRHANDLE,EXPR
+X<opendir>, ord EXPR X<ord> X<encoding>, ord, our EXPR X<our> X<global>,
+our EXPR TYPE, our EXPR : ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST
+X<pack>, package NAMESPACE X<package> X<module> X<namespace>, package, pipe
+READHANDLE,WRITEHANDLE X<pipe>, pop ARRAY X<pop> X<stack>, pop, pos SCALAR
+X<pos> X<match, position>, pos, print FILEHANDLE LIST X<print>, print LIST,
+print, printf FILEHANDLE FORMAT, LIST X<printf>, printf FORMAT, LIST,
+prototype FUNCTION X<prototype>, push ARRAY,LIST X<push>, X<stack>,
+q/STRING/, qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR
+X<quotemeta> X<metacharacter>, quotemeta, rand EXPR X<rand> X<random>,
+rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET X<read>, read
+FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE X<readdir>, readline EXPR
+X<readline> X<gets> X<fgets>, readlink EXPR X<readlink>, readlink, readpipe
+EXPR X<readpipe>, recv SOCKET,SCALAR,LENGTH,FLAGS X<recv>, redo LABEL
+X<redo>, redo, ref EXPR X<ref> X<reference>, ref, rename OLDNAME,NEWNAME
+X<rename> X<move> X<mv> X<ren>, require VERSION X<require>, require EXPR,
+require, reset EXPR X<reset>, reset, return EXPR X<return>, return, reverse
+LIST X<reverse> X<rev> X<invert>, rewinddir DIRHANDLE X<rewinddir>, rindex
+STR,SUBSTR,POSITION X<rindex>, rindex STR,SUBSTR, rmdir FILENAME X<rmdir>
+X<rd> X<directory, remove>, rmdir, s///, say FILEHANDLE LIST X<say>, say
+LIST, say, scalar EXPR X<scalar> X<context>, seek
+FILEHANDLE,POSITION,WHENCE X<seek> X<fseek> X<filehandle, position>,
+seekdir DIRHANDLE,POS X<seekdir>, select FILEHANDLE X<select> X<filehandle,
+default>, select, select RBITS,WBITS,EBITS,TIMEOUT X<select>, semctl
+ID,SEMNUM,CMD,ARG X<semctl>, semget KEY,NSEMS,FLAGS X<semget>, semop
+KEY,OPSTRING X<semop>, send SOCKET,MSG,FLAGS,TO X<send>, send
+SOCKET,MSG,FLAGS, setpgrp PID,PGRP X<setpgrp> X<group>, setpriority
+WHICH,WHO,PRIORITY X<setpriority> X<priority> X<nice> X<renice>, setsockopt
+SOCKET,LEVEL,OPTNAME,OPTVAL X<setsockopt>, shift ARRAY X<shift>, shift,
+shmctl ID,CMD,ARG X<shmctl>, shmget KEY,SIZE,FLAGS X<shmget>, shmread
+ID,VAR,POS,SIZE X<shmread> X<shmwrite>, shmwrite ID,STRING,POS,SIZE,
+shutdown SOCKET,HOW X<shutdown>, sin EXPR X<sin> X<sine> X<asin>
+X<arcsine>, sin, sleep EXPR X<sleep> X<pause>, sleep, socket
+SOCKET,DOMAIN,TYPE,PROTOCOL X<socket>, socketpair
+SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL X<socketpair>, sort SUBNAME LIST
+X<sort> X<qsort> X<quicksort> X<mergesort>, sort BLOCK LIST, sort LIST,
+splice ARRAY,OFFSET,LENGTH,LIST X<splice>, splice ARRAY,OFFSET,LENGTH,
+splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT X<split>,
+split /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST
+X<sprintf>, format parameter index, flags, vector flag, (minimum) width,
+precision, or maximum width X<precision>, size, order of arguments, sqrt
+EXPR X<sqrt> X<root> X<square root>, sqrt, srand EXPR X<srand> X<seed>
+X<randseed>, srand, stat FILEHANDLE X<stat> X<file, status>, stat EXPR,
+stat, study SCALAR X<study>, study, sub NAME BLOCK X<sub>, sub NAME (PROTO)
+BLOCK, sub NAME : ATTRS BLOCK, sub NAME (PROTO) : ATTRS BLOCK, substr
+EXPR,OFFSET,LENGTH,REPLACEMENT X<substr> X<substring> X<mid> X<left>
+X<right>, substr EXPR,OFFSET,LENGTH, substr EXPR,OFFSET, symlink
+OLDFILE,NEWFILE X<symlink> X<link> X<symbolic link> X<link, symbolic>,
+syscall NUMBER, LIST X<syscall> X<system call>, sysopen
+FILEHANDLE,FILENAME,MODE X<sysopen>, sysopen
+FILEHANDLE,FILENAME,MODE,PERMS, sysread FILEHANDLE,SCALAR,LENGTH,OFFSET
+X<sysread>, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
+FILEHANDLE,POSITION,WHENCE X<sysseek> X<lseek>, system LIST X<system>
+X<shell>, system PROGRAM LIST, syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET
+X<syswrite>, syswrite FILEHANDLE,SCALAR,LENGTH, syswrite FILEHANDLE,SCALAR,
+tell FILEHANDLE X<tell>, tell, telldir DIRHANDLE X<telldir>, tie
+VARIABLE,CLASSNAME,LIST X<tie>, tied VARIABLE X<tied>, time X<time>
+X<epoch>, times X<times>, tr///, truncate FILEHANDLE,LENGTH X<truncate>,
+truncate EXPR,LENGTH, uc EXPR X<uc> X<uppercase> X<toupper>, uc, ucfirst
+EXPR X<ucfirst> X<uppercase>, ucfirst, umask EXPR X<umask>, umask, undef
+EXPR X<undef> X<undefine>, undef, unlink LIST X<unlink> X<delete> X<remove>
+X<rm>, unlink, unpack TEMPLATE,EXPR X<unpack>, unpack TEMPLATE, untie
+VARIABLE X<untie>, unshift ARRAY,LIST X<unshift>, use Module VERSION LIST
+X<use> X<module> X<import>, use Module VERSION, use Module LIST, use
+Module, use VERSION, utime LIST X<utime>, values HASH X<values>, vec
+EXPR,OFFSET,BITS X<vec> X<bit> X<bit vector>, wait X<wait>, waitpid
+PID,FLAGS X<waitpid>, wantarray X<wantarray> X<context>, warn LIST X<warn>
+X<warning> X<STDERR>, write FILEHANDLE X<write>, write EXPR, write, y///
 
 =back
 
@@ -2165,32 +2439,52 @@ PID,FLAGS, wantarray, warn LIST, write FILEHANDLE, write EXPR, write, y///
 =over 4
 
 =item Ordinary Paragraph
+X<POD, ordinary paragraph>
 
 =item Verbatim Paragraph
+X<POD, verbatim paragraph> X<verbatim>
 
 =item Command Paragraph
+X<POD, command>
 
-C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
-Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
-I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
-I<formatname>>, C<=for I<formatname> I<text...>>, C<=encoding
-I<encodingname>>
+C<=head1 I<Heading Text>> X<=head1> X<=head2> X<=head3> X<=head4> X<head1>
+X<head2> X<head3> X<head4>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
+Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>> X<=over>
+X<=item> X<=back> X<over> X<item> X<back>, C<=item I<stuff...>>, C<=back>,
+C<=cut> X<=cut> X<cut>, C<=pod> X<=pod> X<pod>, C<=begin I<formatname>>
+X<=begin> X<=end> X<=for> X<begin> X<end> X<for>, C<=end I<formatname>>,
+C<=for I<formatname> I<text...>>, C<=encoding I<encodingname>> X<=encoding>
+X<encoding>
 
 =item Formatting Codes
-
-C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
-C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
-C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
-for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
-C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
-(zero-effect) formatting code
+X<POD, formatting code> X<formatting code>
+X<POD, interior sequence> X<interior sequence>
+
+C<IE<lt>textE<gt>> -- italic text X<I> X<< IZ<><> >> X<POD, formatting
+code, italic> X<italic>, C<BE<lt>textE<gt>> -- bold text X<B> X<< BZ<><> >>
+X<POD, formatting code, bold> X<bold>, C<CE<lt>codeE<gt>> -- code text X<C>
+X<< CZ<><> >> X<POD, formatting code, code> X<code>, C<LE<lt>nameE<gt>> --
+a hyperlink X<L> X<< LZ<><> >> X<POD, formatting code, hyperlink>
+X<hyperlink>, C<EE<lt>escapeE<gt>> -- a character escape X<E> X<< EZ<><> >>
+X<POD, formatting code, escape> X<escape>, C<FE<lt>filenameE<gt>> -- used
+for filenames X<F> X<< FZ<><> >> X<POD, formatting code, filename>
+X<filename>, C<SE<lt>textE<gt>> -- text contains non-breaking spaces X<S>
+X<< SZ<><> >> X<POD, formatting code, non-breaking space>  X<non-breaking
+space>, C<XE<lt>topic nameE<gt>> -- an index entry X<X> X<< XZ<><> >>
+X<POD, formatting code, index entry> X<index entry>, C<ZE<lt>E<gt>> -- a
+null (zero-effect) formatting code X<Z> X<< ZZ<><> >> X<POD, formatting
+code, null> X<null>
 
 =item The Intent
+X<POD, intent of>
 
 =item Embedding Pods in Perl Modules
+X<POD, embedding>
 
 =item Hints for Writing Pod
 
+X<podchecker> X<POD, validating>
+
 =back
 
 =item SEE ALSO
@@ -2250,34 +2544,49 @@ First:, Second:, Third:, Fourth:, Fifth:, Sixth:
 =over 4
 
 =item #! and quoting on non-Unix systems
+X<hashbang> X<#!>
 
 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
 
 =item Location of Perl
+X<perl, location of interpreter>
 
 =item Command Switches
+X<perl, command switches> X<command switches>
 
-B<-0>[I<octal/hexadecimal>], B<-A [I<assertions>]>, B<-a>, B<-C
-[I<number/list>]>, B<-c>, B<-d>, B<-dt>, B<-d:>I<foo[=bar,baz]>,
-B<-dt:>I<foo[=bar,baz]>, B<-D>I<letters>, B<-D>I<number>, B<-e>
-I<commandline>, B<-F>I<pattern>, B<-h>, B<-i>[I<extension>],
-B<-I>I<directory>, B<-l>[I<octnum>], B<-m>[B<->]I<module>,
-B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
-B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
-B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<configvar>, B<-w>, B<-W>,
-B<-X>, B<-x>, B<-x> I<directory>
+B<-0>[I<octal/hexadecimal>] X<-0> X<$/>, B<-A[I<module>][=I<assertions>]>
+X<-A>, B<-a> X<-a> X<autosplit>, B<-C [I<number/list>]> X<-C>, B<-c> X<-c>,
+B<-d> X<-d> X<-dt>, B<-dt>, B<-d:>I<foo[=bar,baz]> X<-d> X<-dt>,
+B<-dt:>I<foo[=bar,baz]>, B<-D>I<letters> X<-D> X<DEBUGGING> X<-DDEBUGGING>,
+B<-D>I<number>, B<-e> I<commandline> X<-e>, B<-E> I<commandline> X<-E>,
+B<-f> X<-f>, B<-F>I<pattern> X<-F>, B<-h> X<-h>, B<-i>[I<extension>] X<-i>
+X<in-place>, B<-I>I<directory> X<-I> X<@INC>, B<-l>[I<octnum>] X<-l> X<$/>
+X<$\>, B<-m>[B<->]I<module> X<-m> X<-M>, B<-M>[B<->]I<module>,
+B<-M>[B<->]I<'module ...'>, B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>
+X<-n>, B<-p> X<-p>, B<-P> X<-P>, B<-s> X<-s>, B<-S> X<-S>, B<-t> X<-t>,
+B<-T> X<-T>, B<-u> X<-u>, B<-U> X<-U>, B<-v> X<-v>, B<-V> X<-V>,
+B<-V:>I<configvar>, B<-w> X<-w>, B<-W> X<-W>, B<-X> X<-X>, B<-x> X<-x>,
+B<-x> I<directory>
 
 =back
 
 =item ENVIRONMENT
+X<perl, environment variables>
 
-HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLIO, :bytes, :crlf, :mmap,
-:perlio, :pop, :raw, :stdio, :unix, :utf8, :win32, PERLIO_DEBUG, PERLLIB,
-PERL5DB, PERL5DB_THREADED, PERL5SHELL (specific to the Win32 port),
-PERL_ALLOW_NON_IFS_LSP (specific to the Win32 port), PERL_DEBUG_MSTATS,
-PERL_DESTRUCT_LEVEL, PERL_DL_NONLAZY, PERL_ENCODING, PERL_HASH_SEED,
-PERL_HASH_SEED_DEBUG, PERL_ROOT (specific to the VMS port), PERL_SIGNALS,
-PERL_UNICODE, SYS$LOGIN (specific to the VMS port)
+HOME X<HOME>, LOGDIR X<LOGDIR>, PATH X<PATH>, PERL5LIB X<PERL5LIB>,
+PERL5OPT X<PERL5OPT>, PERLIO X<PERLIO>, :bytes X<:bytes>, :crlf X<:crlf>,
+:mmap X<:mmap>, :perlio X<:perlio>, :pop X<:pop>, :raw X<:raw>, :stdio
+X<:stdio>, :unix X<:unix>, :utf8 X<:utf8>, :win32 X<:win32>, PERLIO_DEBUG
+X<PERLIO_DEBUG>, PERLLIB X<PERLLIB>, PERL5DB X<PERL5DB>, PERL5DB_THREADED
+X<PERL5DB_THREADED>, PERL5SHELL (specific to the Win32 port) X<PERL5SHELL>,
+PERL_ALLOW_NON_IFS_LSP (specific to the Win32 port)
+X<PERL_ALLOW_NON_IFS_LSP>, PERL_DEBUG_MSTATS X<PERL_DEBUG_MSTATS>,
+PERL_DESTRUCT_LEVEL X<PERL_DESTRUCT_LEVEL>, PERL_DL_NONLAZY
+X<PERL_DL_NONLAZY>, PERL_ENCODING X<PERL_ENCODING>, PERL_HASH_SEED
+X<PERL_HASH_SEED>, PERL_HASH_SEED_DEBUG X<PERL_HASH_SEED_DEBUG>, PERL_ROOT
+(specific to the VMS port) X<PERL_ROOT>, PERL_SIGNALS X<PERL_SIGNALS>,
+PERL_UNICODE X<PERL_UNICODE>, SYS$LOGIN (specific to the VMS port)
+X<SYS$LOGIN>
 
 =back
 
@@ -2303,15 +2612,18 @@ PERL_UNICODE, SYS$LOGIN (specific to the VMS port)
 
 =item Controlling Warnings from the Command Line
 
-B<-w>, B<-W>, B<-X>
+B<-w> X<-w>, B<-W> X<-W>, B<-X> X<-X>
 
 =item Backward Compatibility
 
 =item Category Hierarchy
+X<warning, categories>
 
 =item Fatal Warnings
+X<warning, fatal>
 
 =item Reporting Warnings from a Module
+X<warning, reporting> X<warning, registering>
 
 =back
 
@@ -2335,32 +2647,68 @@ B<-w>, B<-W>, B<-X>
 
 =item Debugger Commands
 
-h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars], y
-[level [vars]], T, s [expr], n [expr], r, <CR>, c [line|sub], l, l
-min+incr, l min-max, l line, l subname, -, v [line], f filename, /pattern/,
-?pattern?, L [abw], S [[!]regex], t, t expr, b, b [line] [condition], b
-subname [condition], b postpone subname [condition], b load filename, b
-compile subname, B line, B *, a [line] command, A line, A *, w expr, W
-expr, W *, o, o booloption .., o anyoption? .., o option=value .., < ?, < [
-command ], < *, << command, > ?, > command, > *, >> command, { ?, { [
-command ], { *, {{ command, ! number, ! -number, ! pattern, !! cmd, source
-file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, M, man
-[manpage]
+h X<debugger command, h>, h [command], h h, p expr X<debugger command, p>,
+x [maxdepth] expr X<debugger command, x>, V [pkg [vars]] X<debugger
+command, V>, X [vars] X<debugger command, X>, y [level [vars]] X<debugger
+command, y>, T X<debugger command, T> X<backtrace> X<stack, backtrace>, s
+[expr] X<debugger command, s> X<step>, n [expr] X<debugger command, n>, r
+X<debugger command, r>, <CR>, c [line|sub] X<debugger command, c>, l
+X<debugger command, l>, l min+incr, l min-max, l line, l subname, -
+X<debugger command, ->, v [line] X<debugger command, v>, . X<debugger
+command, .>, f filename X<debugger command, f>, /pattern/, ?pattern?, L
+[abw] X<debugger command, L>, S [[!]regex] X<debugger command, S>, t
+X<debugger command, t>, t expr X<debugger command, t>, b X<breakpoint>
+X<debugger command, b>, b [line] [condition] X<breakpoint> X<debugger
+command, b>, b subname [condition] X<breakpoint> X<debugger command, b>, b
+postpone subname [condition] X<breakpoint> X<debugger command, b>, b load
+filename X<breakpoint> X<debugger command, b>, b compile subname
+X<breakpoint> X<debugger command, b>, B line X<breakpoint> X<debugger
+command, B>, B * X<breakpoint> X<debugger command, B>, a [line] command
+X<debugger command, a>, A line X<debugger command, A>, A * X<debugger
+command, A>, w expr X<debugger command, w>, W expr X<debugger command, W>,
+W * X<debugger command, W>, o X<debugger command, o>, o booloption ...
+X<debugger command, o>, o anyoption? ... X<debugger command, o>, o
+option=value ... X<debugger command, o>, < ? X<< debugger command, < >>, <
+[ command ] X<< debugger command, < >>, < * X<< debugger command, < >>, <<
+command X<< debugger command, << >>, > ? X<< debugger command, > >>, >
+command X<< debugger command, > >>, > * X<< debugger command, > >>, >>
+command X<<< debugger command, >> >>>, { ? X<debugger command, {>, { [
+command ], { * X<debugger command, {>, {{ command X<debugger command, {{>,
+! number X<debugger command, !>, ! -number X<debugger command, !>, !
+pattern X<debugger command, !>, !! cmd X<debugger command, !!>, source file
+X<debugger command, source>, H -number X<debugger command, H>, q or ^D
+X<debugger command, q> X<debugger command, ^D>, R X<debugger command, R>,
+|dbcmd X<debugger command, |>, ||dbcmd X<debugger command, ||>, command, m
+expr X<debugger command, m>, M X<debugger command, M>, man [manpage]
+X<debugger command, man>
 
 =item Configurable Options
 
-C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
-C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
-C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
-C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
-C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
-C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
-C<NonStop>
+C<recallCommand>, C<ShellBang> X<debugger option, recallCommand> X<debugger
+option, ShellBang>, C<pager> X<debugger option, pager>, C<tkRunning>
+X<debugger option, tkRunning>, C<signalLevel>, C<warnLevel>, C<dieLevel>
+X<debugger option, signalLevel> X<debugger option, warnLevel> X<debugger
+option, dieLevel>, C<AutoTrace> X<debugger option, AutoTrace>, C<LineInfo>
+X<debugger option, LineInfo>, C<inhibit_exit> X<debugger option,
+inhibit_exit>, C<PrintRet> X<debugger option, PrintRet>, C<ornaments>
+X<debugger option, ornaments>, C<frame> X<debugger option, frame>,
+C<maxTraceLen> X<debugger option, maxTraceLen>, C<windowSize> X<debugger
+option, windowSize>, C<arrayDepth>, C<hashDepth> X<debugger option,
+arrayDepth> X<debugger option, hashDepth>, C<dumpDepth> X<debugger option,
+dumpDepth>, C<compactDump>, C<veryCompact> X<debugger option, compactDump>
+X<debugger option, veryCompact>, C<globPrint> X<debugger option,
+globPrint>, C<DumpDBFiles> X<debugger option, DumpDBFiles>, C<DumpPackages>
+X<debugger option, DumpPackages>, C<DumpReused> X<debugger option,
+DumpReused>, C<quote>, C<HighBit>, C<undefPrint> X<debugger option, quote>
+X<debugger option, HighBit> X<debugger option, undefPrint>, C<UsageOnly>
+X<debugger option, UsageOnly>, C<TTY> X<debugger option, TTY>, C<noTTY>
+X<debugger option, noTTY>, C<ReadLine> X<debugger option, ReadLine>,
+C<NonStop> X<debugger option, NonStop>
 
 =item Debugger input/output
 
-Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
-listing
+Prompt, Multiline commands, Stack backtrace X<backtrace> X<stack,
+backtrace>, Line Listing Format, Frame listing
 
 =item Debugging compile-time statements
 
@@ -2371,12 +2719,16 @@ listing
 =item Editor Support for Debugging
 
 =item The Perl Profiler
+X<profile> X<profiling> X<profiler>
 
 =back
 
 =item Debugging regular expressions
+X<regular expression, debugging>
+X<regex, debugging> X<regexp, debugging>
 
 =item Debugging memory usage
+X<memory usage>
 
 =item SEE ALSO
 
@@ -2401,7 +2753,7 @@ IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
-$\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $#,
+$\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;,
 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
@@ -2409,22 +2761,23 @@ HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
-C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
+C<substr($var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
 IO::Handle->format_line_break_characters EXPR,
 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
-$FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
-$OS_ERROR, $ERRNO, $!, %!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
-$PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
-$>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
-$PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
+$FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?,
+${^CHILD_ERROR_NATIVE}, ${^ENCODING}, $OS_ERROR, $ERRNO, $!, %!,
+$EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@, $PROCESS_ID, $PID, $$,
+$REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID, $>, $REAL_GROUP_ID,
+$GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $), $PROGRAM_NAME, $0, $[, $],
+$COMPILING, $^C, $DEBUGGING, $^D, ${^RE_DEBUG_FLAGS}, ${^RE_TRIE_MAXBUF},
 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
 0x100, 0x200, 0x400, $LAST_REGEXP_CODE_RESULT, $^R,
 $EXCEPTIONS_BEING_CAUGHT, $^S, $BASETIME, $^T, ${^TAINT}, ${^UNICODE},
-$PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS}, $EXECUTABLE_NAME, $^X,
-ARGV, $ARGV, @ARGV, ARGVOUT, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG,
-$SIG{expr}
+${^UTF8LOCALE}, $PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS},
+$EXECUTABLE_NAME, $^X, ARGV, $ARGV, @ARGV, ARGVOUT, @F, @INC, @_, %INC,
+%ENV, $ENV{expr}, %SIG, $SIG{expr}
 
 =item Error Indicators
 
@@ -2442,24 +2795,38 @@ $SIG{expr}
 
 =item DESCRIPTION
 
-i, m, s, x
+i X</i> X<regex, case-insensitive> X<regexp, case-insensitive> X<regular
+expression, case-insensitive>, m X</m> X<regex, multiline> X<regexp,
+multiline> X<regular expression, multiline>, s X</s> X<regex, single-line>
+X<regexp, single-line> X<regular expression, single-line>, x X</x>
 
 =over 4
 
 =item Regular Expressions
 
-[1], [2], [3], cntrl, graph, print, punct, xdigit
+[1], [2], [3], cntrl X<cntrl>, graph X<graph>, print X<print>, punct
+X<punct>, xdigit X<xdigit>
 
 =item Extended Patterns
 
-C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
-C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
-code })>, C<(??{ code })>, C<< (?>pattern) >>,
-C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
+C<(?#text)> X<(?#)>, C<(?imsx-imsx)> X<(?)>, C<(?:pattern)> X<(?:)>,
+C<(?imsx-imsx:pattern)>, C<(?=pattern)> X<(?=)> X<look-ahead, positive>
+X<lookahead, positive>, C<(?!pattern)> X<(?!)> X<look-ahead, negative>
+X<lookahead, negative>, C<(?<=pattern)> X<(?<=)> X<look-behind, positive>
+X<lookbehind, positive>, C<(?<!pattern)> X<(?<!)> X<look-behind, negative>
+X<lookbehind, negative>, C<(?{ code })> X<(?{})> X<regex, code in>
+X<regexp, code in> X<regular expression, code in>, C<(??{ code })>
+X<(??{})> X<regex, postponed> X<regexp, postponed> X<regular expression,
+postponed> X<regex, recursive> X<regexp, recursive> X<regular expression,
+recursive>, C<< (?>pattern) >> X<backtrack> X<backtracking>,
+C<(?(condition)yes-pattern|no-pattern)> X<(?()>,
+C<(?(condition)yes-pattern)>
 
 =item Backtracking
+X<backtrack> X<backtracking>
 
 =item Version 8 Regular Expressions
+X<regular expression, version 8> X<regex, version 8> X<regexp, version 8>
 
 =item Warning on \1 vs $1
 
@@ -2531,20 +2898,39 @@ C<(?(condition)yes-pattern|no-pattern)>
 =over 4
 
 =item Making References
+X<reference, creation> X<referencing>
+
+1. X<\> X<backslash>, 2. X<array, anonymous> X<[> X<[]> X<square bracket>
+X<bracket, square> X<arrayref> X<array reference> X<reference, array>, 3.
+X<hash, anonymous> X<{> X<{}> X<curly bracket> X<bracket, curly> X<brace>
+X<hashref> X<hash reference> X<reference, hash>, 4. X<subroutine,
+anonymous> X<subroutine, reference> X<reference, subroutine> X<scope,
+lexical> X<closure> X<lexical> X<lexical scope>, 5. X<constructor> X<new>,
+6. X<autovivification>, 7. X<*foo{THING}> X<*>
 
 =item Using References
+X<reference, use> X<dereferencing> X<dereference>
+
+2. X<${}> X<@{}> X<%{}>, 3. X<autovivification> X<< -> >> X<arrow>, 4.
+X<encapsulation>
 
 =item Symbolic references
+X<reference, symbolic> X<reference, soft>
+X<symbolic reference> X<soft reference>
 
 =item Not-so-symbolic references
 
 =item Pseudo-hashes: Using an array as a hash
+X<pseudo-hash> X<pseudo hash> X<pseudohash>
 
 =item Function Templates
+X<scope, lexical> X<closure> X<lexical> X<lexical scope>
+X<subroutine, nested> X<sub, nested> X<subroutine, local> X<sub, local>
 
 =back
 
 =item WARNING
+X<reference, string context> X<reference, use as hash key>
 
 =item SEE ALSO
 
@@ -2559,24 +2945,35 @@ C<(?(condition)yes-pattern|no-pattern)>
 =over 4
 
 =item Text Fields
+X<format, text field>
 
 =item Numeric Fields
+X<#> X<format, numeric field>
 
 =item The Field @* for Variable Width Multi-Line Text
+X<@*>
 
 =item The Field ^* for Variable Width One-line-at-a-time Text
+X<^*>
 
 =item Specifying Values
+X<format, specifying values>
 
 =item Using Fill Mode
+X<format, fill mode>
 
 =item Suppressing Lines Where All Fields Are Void
+X<format, suppressing lines>
 
 =item Repeating Format Lines
+X<format, repeating lines>
 
 =item Top of Form Processing
+X<format, top of form> X<top> X<header>
 
 =item Format Variables
+X<format variables>
+X<format, variables>
 
 =back
 
@@ -2585,8 +2982,10 @@ C<(?(condition)yes-pattern|no-pattern)>
 =over 4
 
 =item Footers
+X<format, footer> X<footer>
 
 =item Accessing Formatting Internals
+X<format, internals>
 
 =back
 
@@ -2603,24 +3002,33 @@ C<(?(condition)yes-pattern|no-pattern)>
 =over 4
 
 =item An Object is Simply a Reference
+X<object> X<bless> X<constructor> X<new>
 
 =item A Class is Simply a Package
+X<class> X<package> X<@ISA> X<inheritance>
 
 =item A Method is Simply a Subroutine
+X<method>
 
 =item Method Invocation
+X<invocation> X<method> X<arrow> X<< -> >>
 
 =item Indirect Object Syntax
+X<indirect object syntax> X<invocation, indirect> X<indirect>
 
 =item Default UNIVERSAL methods
+X<UNIVERSAL>
 
-isa(CLASS), can(METHOD), VERSION( [NEED] )
+isa(CLASS) X<isa>, can(METHOD) X<can>, VERSION( [NEED] ) X<VERSION>
 
 =item Destructors
+X<destructor> X<DESTROY>
 
 =item Summary
 
 =item Two-Phased Garbage Collection
+X<garbage collection> X<GC> X<circular reference>
+X<reference, circular> X<DESTROY> X<destructor>
 
 =back
 
@@ -2639,33 +3047,44 @@ isa(CLASS), can(METHOD), VERSION( [NEED] )
 =over 4
 
 =item Tying Scalars
+X<scalar, tying>
 
-TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
-DESTROY this
+TIESCALAR classname, LIST X<TIESCALAR>, FETCH this X<FETCH>, STORE this,
+value X<STORE>, UNTIE this X<UNTIE>, DESTROY this X<DESTROY>
 
 =item Tying Arrays
+X<array, tying>
 
-TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
-FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
-key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
-UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
-this
+TIEARRAY classname, LIST X<TIEARRAY>, FETCH this, index X<FETCH>, STORE
+this, index, value X<STORE>, FETCHSIZE this X<FETCHSIZE>, STORESIZE this,
+count X<STORESIZE>, EXTEND this, count X<EXTEND>, EXISTS this, key
+X<EXISTS>, DELETE this, key X<DELETE>, CLEAR this X<CLEAR>, PUSH this, LIST
+ X<PUSH>, POP this X<POP>, SHIFT this X<SHIFT>, UNSHIFT this, LIST 
+X<UNSHIFT>, SPLICE this, offset, length, LIST X<SPLICE>, UNTIE this
+X<UNTIE>, DESTROY this X<DESTROY>
 
 =item Tying Hashes
+X<hash, tying>
 
-USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
-this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
-this, NEXTKEY this, lastkey, SCALAR this, UNTIE this, DESTROY this
+USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST X<TIEHASH>, FETCH this,
+key X<FETCH>, STORE this, key, value X<STORE>, DELETE this, key X<DELETE>,
+CLEAR this X<CLEAR>, EXISTS this, key X<EXISTS>, FIRSTKEY this X<FIRSTKEY>,
+NEXTKEY this, lastkey X<NEXTKEY>, SCALAR this X<SCALAR>, UNTIE this
+X<UNTIE>, DESTROY this X<DESTROY>
 
 =item Tying FileHandles
+X<filehandle, tying>
 
-TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
-LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
-DESTROY this
+TIEHANDLE classname, LIST X<TIEHANDLE>, WRITE this, LIST X<WRITE>, PRINT
+this, LIST X<PRINT>, PRINTF this, LIST X<PRINTF>, READ this, LIST X<READ>,
+READLINE this X<READLINE>, GETC this X<GETC>, CLOSE this X<CLOSE>, UNTIE
+this X<UNTIE>, DESTROY this X<DESTROY>
 
 =item UNTIE this
+X<UNTIE>
 
 =item The C<untie> Gotcha
+X<untie>
 
 =back
 
@@ -3138,9 +3557,6 @@ portable
 
 =item CPAN Testers
 
-Mailing list: cpan-testers@perl.org, Testing results:
-http://testers.cpan.org/
-
 =item PLATFORMS
 
 =over 4
@@ -3169,42 +3585,21 @@ http://testers.cpan.org/
 
 =item Alphabetical Listing of Perl Functions
 
--I<X> FILEHANDLE, -I<X> EXPR, -I<X>, binmode FILEHANDLE, chmod LIST, chown
-LIST, chroot FILENAME, chroot, crypt PLAINTEXT,SALT, dbmclose HASH, dbmopen
-HASH,DBNAME,MODE, dump LABEL, exec LIST, exit EXPR, exit, fcntl
-FILEHANDLE,FUNCTION,SCALAR, flock FILEHANDLE,OPERATION, fork, getlogin,
-getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam NAME, getgrnam NAME,
-getnetbyname NAME, getpwuid UID, getgrgid GID, getnetbyaddr ADDR,ADDRTYPE,
-getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent, getgrent,
-gethostbyname, gethostent, getnetent, getprotoent, getservent, sethostent
-STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN,
-endpwent, endgrent, endhostent, endnetent, endprotoent, endservent,
-getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl
-FILEHANDLE,FUNCTION,SCALAR, kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat
-FILEHANDLE, lstat EXPR, lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd
-ID,MSG,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open
-FILEHANDLE, pipe READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
-RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
-KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
-setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
-SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
-shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
-socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
-EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
-FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
-FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
-wait, waitpid PID,FLAGS
-
-=back
-
-=item CHANGES
-
-v1.49, 12 August 2002, v1.48, 02 February 2001, v1.47, 22 March 2000,
-v1.46, 12 February 2000, v1.45, 20 December 1999, v1.44, 19 July 1999,
-v1.43, 24 May 1999, v1.42, 22 May 1999, v1.41, 19 May 1999, v1.40, 11 April
-1999, v1.39, 11 February 1999, v1.38, 31 December 1998, v1.37, 19 December
-1998, v1.36, 9 September 1998, v1.35, 13 August 1998, v1.33, 06 August
-1998, v1.32, 05 August 1998, v1.30, 03 August 1998, v1.23, 10 July 1998
+-I<X>, atan2, binmode, chmod, chown, chroot, crypt, dbmclose, dbmopen,
+dump, exec, exit, fcntl, flock, fork, getlogin, getpgrp, getppid,
+getpriority, getpwnam, getgrnam, getnetbyname, getpwuid, getgrgid,
+getnetbyaddr, getprotobynumber, getservbyport, getpwent, getgrent,
+gethostbyname, gethostent, getnetent, getprotoent, getservent, sethostent,
+setnetent, setprotoent, setservent, endpwent, endgrent, endhostent,
+endnetent, endprotoent, endservent, getsockopt SOCKET,LEVEL,OPTNAME, glob,
+gmtime, ioctl FILEHANDLE,FUNCTION,SCALAR, kill, link, localtime, lstat,
+msgctl, msgget, msgsnd, msgrcv, open, pipe, readlink, rename, select,
+semctl, semget, semop, setgrent, setpgrp, setpriority, setpwent,
+setsockopt, shmctl, shmget, shmread, shmwrite, sockatmark, socketpair,
+stat, symlink, syscall, sysopen, system, times, truncate, umask, utime,
+wait, waitpid
+
+=back
 
 =item Supported Platforms
 
@@ -3589,16 +3984,24 @@ chcp, dataset access, OS/390, z/OS iconv, locales
 =over 4
 
 =item Packages
+X<package> X<namespace> X<variable, global> X<global variable> X<global>
 
 =item Symbol Tables
+X<symbol table> X<stash> X<%::> X<%main::> X<typeglob> X<glob> X<alias>
 
 =item BEGIN, CHECK, INIT and END
+X<BEGIN> X<CHECK> X<INIT> X<END>
 
 =item Perl Classes
+X<class> X<@ISA>
 
 =item Perl Modules
+X<module>
 
 =item Making your module threadsafe
+X<threadsafe> X<thread safe>
+X<module, threadsafe> X<module, thread safe>
+X<CLONE> X<CLONE_SKIP> X<thread> X<threads> X<ithread>
 
 =back
 
@@ -3616,80 +4019,98 @@ chcp, dataset access, OS/390, z/OS iconv, locales
 
 =item Pragmatic Modules
 
-assertions, assertions::activate, attributes, attrs, autouse, base, bigint,
-bignum, bigrat, blib, bytes, charnames, constant, diagnostics, encoding,
-fields, filetest, if, integer, less, lib, locale, open, ops, overload, re,
-sigtrap, sort, strict, subs, threads, threads::shared, utf8, vars, version,
-vmsish, warnings, warnings::register
+assertions, assertions::activate, assertions::compat, attributes, attrs,
+autouse, base, bigint, bignum, bigrat, blib, bytes, charnames, constant,
+diagnostics, encoding, encoding::warnings, feature, fields, filetest, if,
+integer, less, lib, locale, open, ops, overload, re, sigtrap, sort, strict,
+subs, threads, threads::shared, utf8, vars, version, vmsish, warnings,
+warnings::register
 
 =item Standard Modules
 
-AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
-B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
-B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
-B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
-CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
-CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
-Class::Struct, Config, Cwd, DB, DBM_Filter, DB_File, Data::Dumper,
-Devel::DProf, Devel::PPPort, Devel::Peek, Devel::SelfStubber, Digest,
-Digest::MD5, Digest::base, DirHandle, Dumpvalue, DynaLoader, Encode,
-Encode::Alias, Encode::Byte, Encode::CJKConstants, Encode::CN,
-Encode::CN::HZ, Encode::Config, Encode::EBCDIC, Encode::Encoder,
-Encode::Encoding, Encode::Guess, Encode::JP, Encode::JP::H2Z,
-Encode::JP::JIS7, Encode::KR, Encode::KR::2022_KR, Encode::MIME::Header,
-Encode::PerlIO, Encode::Supported, Encode::Symbol, Encode::TW,
-Encode::Unicode, Encode::Unicode::UTF7, English, Env, Errno, Exporter,
-Exporter::Heavy, ExtUtils::Command, ExtUtils::Command::MM,
-ExtUtils::Constant, ExtUtils::Embed, ExtUtils::Install,
-ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM, ExtUtils::MM_Any,
-ExtUtils::MM_BeOS, ExtUtils::MM_Cygwin, ExtUtils::MM_DOS,
-ExtUtils::MM_MacOS, ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_UWIN,
-ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
-ExtUtils::MM_Win95, ExtUtils::MY, ExtUtils::MakeMaker,
-ExtUtils::MakeMaker::FAQ, ExtUtils::MakeMaker::Tutorial,
-ExtUtils::MakeMaker::bytes, ExtUtils::MakeMaker::vmsish,
-ExtUtils::Manifest, ExtUtils::Mkbootstrap, ExtUtils::Mksymlists,
-ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl, File::Basename,
-File::CheckTree, File::Compare, File::Copy, File::DosGlob, File::Find,
-File::Glob, File::Path, File::Spec, File::Spec::Cygwin, File::Spec::Epoc,
-File::Spec::Functions, File::Spec::Mac, File::Spec::OS2, File::Spec::Unix,
-File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
-FileHandle, Filter::Simple, Filter::Util::Call, FindBin, GDBM_File,
-Getopt::Long, Getopt::Std, Hash::Util, I18N::Collate, I18N::LangTags,
-I18N::LangTags::List, I18N::Langinfo, IO, IO::Dir, IO::File, IO::Handle,
-IO::Pipe, IO::Poll, IO::Seekable, IO::Select, IO::Socket, IO::Socket::INET,
-IO::Socket::UNIX, IPC::Open2, IPC::Open3, IPC::SysV, IPC::SysV::Msg,
-IPC::SysV::Semaphore, List::Util, Locale::Constants, Locale::Country,
-Locale::Currency, Locale::Language, Locale::Maketext,
-Locale::Maketext::TPJ13, Locale::Script, MIME::Base64,
+AnyDBM_File, Archive::Tar, Archive::Tar::File, Attribute::Handlers,
+AutoLoader, AutoSplit, B, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode,
+B::C, B::CC, B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint,
+B::Showlex, B::Stackobj, B::Stash, B::Terse, B::Xref, Benchmark,
+ByteLoader, CGI, CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast,
+CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util, CPAN, CPAN::FirstTime,
+CPAN::Nox, CPAN::Version, Carp, Carp::Heavy, Class::ISA, Class::Struct,
+Compress::Zlib, Compress::Zlib::pod::FAQ, Config, Cwd, DB, DBM_Filter,
+DB_File, Data::Dumper, Devel::DProf, Devel::PPPort, Devel::Peek,
+Devel::SelfStubber, Digest, Digest::MD5, Digest::base, Digest::file,
+DirHandle, Dumpvalue, DynaLoader, Encode, Encode::Alias, Encode::Byte,
+Encode::CJKConstants, Encode::CN, Encode::CN::HZ, Encode::Config,
+Encode::EBCDIC, Encode::Encoder, Encode::Encoding, Encode::Guess,
+Encode::JP, Encode::JP::H2Z, Encode::JP::JIS7, Encode::KR,
+Encode::KR::2022_KR, Encode::MIME::Header, Encode::PerlIO,
+Encode::Supported, Encode::Symbol, Encode::TW, Encode::Unicode,
+Encode::Unicode::UTF7, English, Env, Errno, Exporter, Exporter::Heavy,
+ExtUtils::CBuilder, ExtUtils::CBuilder::Platform::Windows,
+ExtUtils::Command, ExtUtils::Command::MM, ExtUtils::Constant,
+ExtUtils::Constant::Base, ExtUtils::Constant::Utils,
+ExtUtils::Constant::XS, ExtUtils::Embed, ExtUtils::Install,
+ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM, ExtUtils::MM_AIX,
+ExtUtils::MM_Any, ExtUtils::MM_BeOS, ExtUtils::MM_Cygwin, ExtUtils::MM_DOS,
+ExtUtils::MM_MacOS, ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_QNX,
+ExtUtils::MM_UWIN, ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_VOS,
+ExtUtils::MM_Win32, ExtUtils::MM_Win95, ExtUtils::MY, ExtUtils::MakeMaker,
+ExtUtils::MakeMaker::Config, ExtUtils::MakeMaker::FAQ,
+ExtUtils::MakeMaker::Tutorial, ExtUtils::MakeMaker::bytes,
+ExtUtils::MakeMaker::vmsish, ExtUtils::Manifest, ExtUtils::Mkbootstrap,
+ExtUtils::Mksymlists, ExtUtils::Packlist, ExtUtils::ParseXS,
+ExtUtils::testlib, Fatal, Fcntl, File::Basename, File::CheckTree,
+File::Compare, File::Copy, File::DosGlob, File::Find, File::Glob,
+File::GlobMapper, File::Path, File::Spec, File::Spec::Cygwin,
+File::Spec::Epoc, File::Spec::Functions, File::Spec::Mac, File::Spec::OS2,
+File::Spec::Unix, File::Spec::VMS, File::Spec::Win32, File::Temp,
+File::stat, FileCache, FileHandle, Filter::Simple, Filter::Util::Call,
+FindBin, GDBM_File, Getopt::Long, Getopt::Std, Hash::Util, I18N::Collate,
+I18N::LangTags, I18N::LangTags::Detect, I18N::LangTags::List,
+I18N::Langinfo, IO, IO::Compress::Deflate, IO::Compress::Gzip,
+IO::Compress::RawDeflate, IO::Dir, IO::File, IO::Handle, IO::Pipe,
+IO::Poll, IO::Seekable, IO::Select, IO::Socket, IO::Socket::INET,
+IO::Socket::UNIX, IO::Uncompress::AnyInflate, IO::Uncompress::Gunzip,
+IO::Uncompress::Inflate, IO::Uncompress::RawInflate, IO::Zlib, IPC::Open2,
+IPC::Open3, IPC::SysV, IPC::SysV::Msg, IPC::SysV::Semaphore, List::Util,
+Locale::Constants, Locale::Country, Locale::Currency, Locale::Language,
+Locale::Maketext, Locale::Maketext::TPJ13, Locale::Script, MIME::Base64,
 MIME::Base64::QuotedPrint, Math::BigFloat, Math::BigInt,
-Math::BigInt::Calc, Math::BigInt::CalcEmu, Math::BigRat, Math::Complex,
-Math::Trig, Memoize, Memoize::AnyDBM_File, Memoize::Expire,
-Memoize::ExpireFile, Memoize::ExpireTest, Memoize::NDBM_File,
-Memoize::SDBM_File, Memoize::Storable, NDBM_File, NEXT, Net::Cmd,
-Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3,
-Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
-Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO,
-PerlIO::encoding, PerlIO::scalar, PerlIO::via, PerlIO::via::QuotedPrint,
-Pod::Checker, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
+Math::BigInt::Calc, Math::BigInt::CalcEmu, Math::BigInt::FastCalc,
+Math::BigRat, Math::Complex, Math::Trig, Memoize, Memoize::AnyDBM_File,
+Memoize::Expire, Memoize::ExpireFile, Memoize::ExpireTest,
+Memoize::NDBM_File, Memoize::SDBM_File, Memoize::Storable,
+Module::CoreList, NDBM_File, NEXT, Net::Cmd, Net::Config, Net::Domain,
+Net::FTP, Net::NNTP, Net::Netrc, Net::POP3, Net::Ping, Net::SMTP,
+Net::Time, Net::hostent, Net::libnetFAQ, Net::netent, Net::protoent,
+Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO, PerlIO::encoding,
+PerlIO::scalar, PerlIO::via, PerlIO::via::QuotedPrint, Pod::Checker,
+Pod::Escapes, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
 Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils, Pod::Parser,
 Pod::Perldoc::ToChecker, Pod::Perldoc::ToMan, Pod::Perldoc::ToNroff,
 Pod::Perldoc::ToPod, Pod::Perldoc::ToRtf, Pod::Perldoc::ToText,
 Pod::Perldoc::ToTk, Pod::Perldoc::ToXml, Pod::PlainText, Pod::Plainer,
-Pod::Select, Pod::Text, Pod::Text::Color, Pod::Text::Overstrike,
-Pod::Text::Termcap, Pod::Usage, SDBM_File, Safe, Scalar::Util,
-Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable, Switch,
-Symbol, Sys::Hostname, Sys::Syslog, Term::ANSIColor, Term::Cap,
-Term::Complete, Term::ReadLine, Test, Test::Builder, Test::Harness,
-Test::Harness::Assert, Test::Harness::Iterator, Test::Harness::Straps,
-Test::More, Test::Simple, Test::Tutorial, Text::Abbrev, Text::Balanced,
-Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap, Thread,
-Thread::Queue, Thread::Semaphore, Thread::Signal, Thread::Specific,
+Pod::Select, Pod::Simple, Pod::Simple::Checker, Pod::Simple::Debug,
+Pod::Simple::DumpAsText, Pod::Simple::DumpAsXML, Pod::Simple::HTML,
+Pod::Simple::HTMLBatch, Pod::Simple::LinkSection, Pod::Simple::Methody,
+Pod::Simple::PullParser, Pod::Simple::PullParserEndToken,
+Pod::Simple::PullParserStartToken, Pod::Simple::PullParserTextToken,
+Pod::Simple::PullParserToken, Pod::Simple::RTF, Pod::Simple::Search,
+Pod::Simple::SimpleTree, Pod::Simple::Subclassing, Pod::Simple::Text,
+Pod::Simple::TextContent, Pod::Simple::XMLOutStream, Pod::Text,
+Pod::Text::Color, Pod::Text::Overstrike, Pod::Text::Termcap, Pod::Usage,
+SDBM_File, Safe, Scalar::Util, Search::Dict, SelectSaver, SelfLoader,
+Shell, Socket, Storable, Switch, Symbol, Sys::Hostname, Sys::Syslog,
+Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine, Test,
+Test::Builder, Test::Builder::Module, Test::Builder::Tester,
+Test::Builder::Tester::Color, Test::Harness, Test::Harness::Assert,
+Test::Harness::Iterator, Test::Harness::Point, Test::Harness::Straps,
+Test::Harness::TAP, Test::More, Test::Simple, Test::Tutorial, Text::Abbrev,
+Text::Balanced, Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap,
+Thread, Thread::Queue, Thread::Semaphore, Thread::Signal, Thread::Specific,
 Tie::Array, Tie::File, Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash,
 Tie::Scalar, Tie::SubstrHash, Time::HiRes, Time::Local, Time::gmtime,
 Time::localtime, Time::tm, UNIVERSAL, Unicode::Collate, Unicode::Normalize,
-Unicode::UCD, User::grent, User::pwent, Win32, XS::APItest, XS::Typemap,
-XSLoader
+Unicode::UCD, User::grent, User::pwent, XS::APItest, XS::Typemap, XSLoader
 
 =item Extension Modules
 
@@ -4037,6 +4458,193 @@ Some Filters Clobber the C<DATA> Handle
 
 =back
 
+=head2 perlglossary - Perl Glossary
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item A
+
+accessor methods, actual arguments, address operator, algorithm, alias,
+alternatives, anonymous, architecture, argument, ARGV, arithmetical
+operator, array, array context, ASCII, assertion, assignment, assignment
+operator, associative array, associativity, asynchronous, atom, atomic
+operation, attribute, autogeneration, autoincrement, autoload, autosplit,
+autovivification, AV, awk
+
+=item B
+
+backreference, backtracking, backward compatibility, bareword, base class,
+big-endian, binary, binary operator, bind, bit, bit shift, bit string,
+bless, block, BLOCK, block buffering, Boolean, Boolean context, breakpoint,
+broadcast, BSD, bucket, buffer, built-in, bundle, byte, bytecode
+
+=item C
+
+C, C preprocessor, call by reference, call by value, callback, canonical,
+capturing, character, character class, character property, circumfix
+operator, class, class method, client, cloister, closure, cluster, CODE,
+code generator, code subpattern, collating sequence, command, command
+buffering, command name, command-line arguments, comment, compilation unit,
+compile phase, compile time, compiler, composer, concatenation,
+conditional, connection, construct, constructor, context, continuation,
+core dump, CPAN, cracker, current package, current working directory,
+currently selected output channel, CV
+
+=item D
+
+dangling statement, data structure, data type, datagram, DBM, declaration,
+decrement, default, defined, delimiter, dereference, derived class,
+descriptor, destroy, destructor, device, directive, directory, directory
+handle, dispatch, distribution, dweomer, dwimmer, dynamic scoping
+
+=item E
+
+eclectic, element, embedding, empty subclass test, en passant,
+encapsulation, endian, environment, environment variable, EOF, errno,
+error, escape sequence, exception, exception handling, exec, executable
+file, execute, execute bit, exit status, export, expression, extension
+
+=item F
+
+false, FAQ, fatal error, field, FIFO, file, file descriptor, file test
+operator, fileglob, filehandle, filename, filesystem, filter, flag,
+floating point, flush, FMTEYEWTK, fork, formal arguments, format, freely
+available, freely redistributable, freeware, function, funny character,
+garbage collection
+
+=item G
+
+GID, glob, global, global destruction, glue language, granularity, greedy,
+grep, group, GV
+
+=item H
+
+hacker, handler, hard reference, hash, hash table, header file, here
+document, hexadecimal, home directory, host, hubris, HV
+
+=item I
+
+identifier, impatience, implementation, import, increment, indexing,
+indirect filehandle, indirect object, indirect object slot, indirection,
+infix, inheritance, instance, instance variable, integer, interface,
+interpolation, interpreter, invocant, invocation, I/O, IO, IP, IPC, is-a,
+iteration, iterator, IV
+
+=item J
+
+JAPH
+
+=item K
+
+key, keyword
+
+=item L
+
+label, laziness, left shift, leftmost longest, lexeme, lexer, lexical
+analysis, lexical scoping, lexical variable, library, LIFO, line, line
+buffering, line number, link, LIST, list, list context, list operator, list
+value, literal, little-endian, local, logical operator, lookahead,
+lookbehind, loop, loop control statement, loop label, lvaluable, lvalue,
+lvalue modifier
+
+=item M
+
+magic, magical increment, magical variables, Makefile, man, manpage,
+matching, member data, memory, metacharacter, metasymbol, method,
+minimalism, mode, modifier, module, modulus, monger, mortal,
+multidimensional array, multiple inheritance
+
+=item N
+
+named pipe, namespace, network address, newline, NFS, null character, null
+list, null string, numeric context, NV, nybble
+
+=item O
+
+object, octal, offset, one-liner, open source software, operand, operating
+system, operator, operator overloading, options, overloading, overriding,
+owner
+
+=item P
+
+package, pad, parameter, parent class, parse tree, parsing, patch, PATH,
+pathname, pattern, pattern matching, permission bits, Pern, pipe, pipeline,
+platform, pod, pointer, polymorphism, port, portable, porter, POSIX,
+postfix, pp, pragma, precedence, prefix, preprocessing, procedure, process,
+program generator, progressive matching, property, protocol, prototype,
+pseudofunction, pseudohash, pseudoliteral, public domain, pumpkin,
+pumpking, PV
+
+=item Q
+
+qualified, quantifier
+
+=item R
+
+readable, reaping, record, recursion, reference, referent, regex, regular
+expression, regular expression modifier, regular file, relational operator,
+reserved words, return value, RFC, right shift, root, RTFM, run phase, run
+time, run-time pattern, RV, rvalue
+
+=item S
+
+scalar, scalar context, scalar literal, scalar value, scalar variable,
+scope, scratchpad, script, script kiddie, sed, semaphore, separator,
+serialization, server, service, setgid, setuid, shared memory, shebang,
+shell, side effects, signal, signal handler, single inheritance, slice,
+slurp, socket, soft reference, source filter, stack, standard, standard
+error, standard I/O, standard input, standard output, stat structure,
+statement, statement modifier, static, static method, static scoping,
+static variable, status, STDERR, STDIN, STDIO, STDOUT, stream, string,
+string context, stringification, struct, structure, subclass, subpattern,
+subroutine, subscript, substitution, substring, superclass, superuser, SV,
+switch, switch cluster, switch statement, symbol, symbol table, symbolic
+debugger, symbolic link, symbolic reference, synchronous, syntactic sugar,
+syntax, syntax tree, syscall
+
+=item T
+
+tainted, TCP, term, terminator, ternary, text, thread, tie, TMTOWTDI,
+token, tokener, tokenizing, toolbox approach, transliterate, trigger,
+trinary, troff, true, truncating, type, type casting, typed lexical,
+typedef, typeglob, typemap
+
+=item U
+
+UDP, UID, umask, unary operator, Unicode, Unix
+
+=item V
+
+value, variable, variable interpolation, variadic, vector, virtual, void
+context, v-string
+
+=item W
+
+warning, watch expression, whitespace, word, working directory, wrapper,
+WYSIWYG
+
+=item X
+
+XS, XSUB
+
+=item Y
+
+yacc
+
+=item Z
+
+zero width, zombie
+
+=back
+
+=item AUTHOR AND COPYRIGHT
+
+=back
+
 =head2 perlembed - how to embed perl in your C program
 
 =over 4
@@ -4130,16 +4738,6 @@ C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
 6144>
 
-=item Example of using B<-DL> switch
-
-C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
-
-=item B<-DL> details
-
-C<!!!>, C<!!>, C<!>
-
-=item Limitations of B<-DL> statistics
-
 =back
 
 =item SEE ALSO
@@ -4336,7 +4934,9 @@ C<!!!>, C<!!>, C<!>
 
 =item Safely Storing Static Data in XS
 
-MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
+MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT,
+aMY_CXT/pMY_CXT, MY_CXT_CLONE, MY_CXT_INIT_INTERP(my_perl),
+dMY_CXT_INTERP(my_perl)
 
 =back
 
@@ -4515,8 +5115,12 @@ A, p, d, s, n, r, f, M, o, x, m, X, E, b
 
 =item Pointer-To-Integer and Integer-To-Pointer
 
+=item Exception Handling
+
 =item Source Documentation
 
+=item Backwards compatibility
+
 =back
 
 =item Unicode Support
@@ -4579,8 +5183,6 @@ call_sv, call_pv, call_method, call_argv
 
 =back
 
-=item KNOWN PROBLEMS
-
 =item EXAMPLES
 
 =over 4
@@ -4623,6 +5225,8 @@ callback
 
 =back
 
+=item LIGHTWEIGHT CALLBACKS
+
 =item SEE ALSO
 
 =item AUTHOR
@@ -4636,165 +5240,278 @@ callback
 =over 4
 
 =item DESCRIPTION
+X<Perl API> X<API> X<api>
 
 =item "Gimme" Values
 
-GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
+GIMME X<GIMME>, GIMME_V X<GIMME_V>, G_ARRAY X<G_ARRAY>, G_DISCARD
+X<G_DISCARD>, G_EVAL X<G_EVAL>, G_NOARGS X<G_NOARGS>, G_SCALAR X<G_SCALAR>,
+G_VOID X<G_VOID>
 
 =item Array Manipulation Functions
 
-AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
-av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
-get_av, newAV, sortsv
+AvFILL X<AvFILL>, av_clear X<av_clear>, av_delete X<av_delete>, av_exists
+X<av_exists>, av_extend X<av_extend>, av_fetch X<av_fetch>, av_fill
+X<av_fill>, av_len X<av_len>, av_make X<av_make>, av_pop X<av_pop>, av_push
+X<av_push>, av_shift X<av_shift>, av_store X<av_store>, av_undef
+X<av_undef>, av_unshift X<av_unshift>, get_av X<get_av>, newAV X<newAV>,
+sortsv X<sortsv>, sortsv_flags X<sortsv_flags>
 
 =item Callback Functions
 
-call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
-FREETMPS, LEAVE, SAVETMPS
+call_argv X<call_argv>, call_method X<call_method>, call_pv X<call_pv>,
+call_sv X<call_sv>, ENTER X<ENTER>, eval_pv X<eval_pv>, eval_sv X<eval_sv>,
+FREETMPS X<FREETMPS>, LEAVE X<LEAVE>, SAVETMPS X<SAVETMPS>
 
 =item Character classes
 
-isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
+isALNUM X<isALNUM>, isALPHA X<isALPHA>, isDIGIT X<isDIGIT>, isLOWER
+X<isLOWER>, isSPACE X<isSPACE>, isUPPER X<isUPPER>, toLOWER X<toLOWER>,
+toUPPER X<toUPPER>
 
 =item Cloning an interpreter
 
-perl_clone
+perl_clone X<perl_clone>
 
 =item CV Manipulation Functions
 
-CvSTASH, get_cv
+CvSTASH X<CvSTASH>, get_cv X<get_cv>
 
 =item Embedding Functions
 
-cv_undef, load_module, nothreadhook, perl_alloc, perl_construct,
-perl_destruct, perl_free, perl_parse, perl_run, require_pv
+cv_undef X<cv_undef>, load_module X<load_module>, nothreadhook
+X<nothreadhook>, perl_alloc X<perl_alloc>, perl_construct
+X<perl_construct>, perl_destruct X<perl_destruct>, perl_free X<perl_free>,
+perl_parse X<perl_parse>, perl_run X<perl_run>, require_pv X<require_pv>
+
+=item Functions in file mathoms.c
+
+gv_fetchmethod X<gv_fetchmethod>, sv_2pvbyte_nolen X<sv_2pvbyte_nolen>,
+sv_2pvutf8_nolen X<sv_2pvutf8_nolen>, sv_2pv_nolen X<sv_2pv_nolen>,
+sv_catpvn_mg X<sv_catpvn_mg>, sv_catsv_mg X<sv_catsv_mg>, sv_force_normal
+X<sv_force_normal>, sv_iv X<sv_iv>, sv_nolocking X<sv_nolocking>,
+sv_nounlocking X<sv_nounlocking>, sv_nv X<sv_nv>, sv_pv X<sv_pv>, sv_pvbyte
+X<sv_pvbyte>, sv_pvbyten X<sv_pvbyten>, sv_pvn X<sv_pvn>, sv_pvutf8
+X<sv_pvutf8>, sv_pvutf8n X<sv_pvutf8n>, sv_taint X<sv_taint>, sv_unref
+X<sv_unref>, sv_uv X<sv_uv>
 
 =item Functions in file pp_pack.c
 
-packlist, pack_cat, unpackstring, unpack_str
+packlist X<packlist>, pack_cat X<pack_cat>, unpackstring X<unpackstring>,
+unpack_str X<unpack_str>
 
 =item Global Variables
 
-PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
+PL_modglobal X<PL_modglobal>, PL_na X<PL_na>, PL_sv_no X<PL_sv_no>,
+PL_sv_undef X<PL_sv_undef>, PL_sv_yes X<PL_sv_yes>
 
 =item GV Functions
 
-GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
-gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
+GvSV X<GvSV>, gv_const_sv X<gv_const_sv>, gv_fetchmeth X<gv_fetchmeth>,
+gv_fetchmethod_autoload X<gv_fetchmethod_autoload>, gv_fetchmeth_autoload
+X<gv_fetchmeth_autoload>, gv_stashpv X<gv_stashpv>, gv_stashpvn
+X<gv_stashpvn>, gv_stashsv X<gv_stashsv>
 
 =item Handy Values
 
-Nullav, Nullch, Nullcv, Nullhv, Nullsv
+Nullav X<Nullav>, Nullch X<Nullch>, Nullcv X<Nullcv>, Nullhv X<Nullhv>,
+Nullsv X<Nullsv>
 
 =item Hash Manipulation Functions
 
-get_hv, HEf_SVKEY, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force,
-HeSVKEY_set, HeVAL, HvNAME, hv_assert, hv_clear, hv_clear_placeholders,
-hv_delete, hv_delete_ent, hv_exists, hv_exists_ent, hv_fetch, hv_fetch_ent,
-hv_iterinit, hv_iterkey, hv_iterkeysv, hv_iternext, hv_iternextsv,
-hv_iternext_flags, hv_iterval, hv_magic, hv_scalar, hv_store, hv_store_ent,
-hv_undef, newHV
+get_hv X<get_hv>, HEf_SVKEY X<HEf_SVKEY>, HeHASH X<HeHASH>, HeKEY X<HeKEY>,
+HeKLEN X<HeKLEN>, HePV X<HePV>, HeSVKEY X<HeSVKEY>, HeSVKEY_force
+X<HeSVKEY_force>, HeSVKEY_set X<HeSVKEY_set>, HeVAL X<HeVAL>, HvNAME
+X<HvNAME>, hv_assert X<hv_assert>, hv_clear X<hv_clear>,
+hv_clear_placeholders X<hv_clear_placeholders>, hv_delete X<hv_delete>,
+hv_delete_ent X<hv_delete_ent>, hv_exists X<hv_exists>, hv_exists_ent
+X<hv_exists_ent>, hv_fetch X<hv_fetch>, hv_fetch_ent X<hv_fetch_ent>,
+hv_iterinit X<hv_iterinit>, hv_iterkey X<hv_iterkey>, hv_iterkeysv
+X<hv_iterkeysv>, hv_iternext X<hv_iternext>, hv_iternextsv
+X<hv_iternextsv>, hv_iternext_flags X<hv_iternext_flags>, hv_iterval
+X<hv_iterval>, hv_magic X<hv_magic>, hv_scalar X<hv_scalar>, hv_store
+X<hv_store>, hv_store_ent X<hv_store_ent>, hv_undef X<hv_undef>, newHV
+X<newHV>
 
 =item Magical Functions
 
-mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
-SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
-SvSetSV, SvSetSV_nosteal, SvSHARE, SvUNLOCK
+mg_clear X<mg_clear>, mg_copy X<mg_copy>, mg_find X<mg_find>, mg_free
+X<mg_free>, mg_get X<mg_get>, mg_length X<mg_length>, mg_magical
+X<mg_magical>, mg_set X<mg_set>, SvGETMAGIC X<SvGETMAGIC>, SvLOCK
+X<SvLOCK>, SvSETMAGIC X<SvSETMAGIC>, SvSetMagicSV X<SvSetMagicSV>,
+SvSetMagicSV_nosteal X<SvSetMagicSV_nosteal>, SvSetSV X<SvSetSV>,
+SvSetSV_nosteal X<SvSetSV_nosteal>, SvSHARE X<SvSHARE>, SvUNLOCK
+X<SvUNLOCK>
 
 =item Memory Management
 
-Copy, CopyD, Move, MoveD, New, Newc, Newz, Poison, Renew, Renewc, Safefree,
-savepv, savepvn, savesharedpv, StructCopy, Zero, ZeroD
+Copy X<Copy>, CopyD X<CopyD>, Move X<Move>, MoveD X<MoveD>, Newx X<Newx>,
+Newxc X<Newxc>, Newxz X<Newxz>, Poison X<Poison>, Renew X<Renew>, Renewc
+X<Renewc>, Safefree X<Safefree>, savepv X<savepv>, savepvn X<savepvn>,
+savesharedpv X<savesharedpv>, savesvpv X<savesvpv>, StructCopy
+X<StructCopy>, Zero X<Zero>, ZeroD X<ZeroD>
 
 =item Miscellaneous Functions
 
-fbm_compile, fbm_instr, form, getcwd_sv, new_version, scan_version, strEQ,
-strGE, strGT, strLE, strLT, strNE, strnEQ, strnNE, sv_nolocking,
-sv_nosharing, sv_nounlocking, upg_version, vcmp, vnormal, vnumify,
-vstringify
+fbm_compile X<fbm_compile>, fbm_instr X<fbm_instr>, form X<form>, getcwd_sv
+X<getcwd_sv>, my_sprintf X<my_sprintf>, new_version X<new_version>,
+scan_version X<scan_version>, strEQ X<strEQ>, strGE X<strGE>, strGT
+X<strGT>, strLE X<strLE>, strLT X<strLT>, strNE X<strNE>, strnEQ X<strnEQ>,
+strnNE X<strnNE>, sv_nosharing X<sv_nosharing>, upg_version X<upg_version>,
+vcmp X<vcmp>, vnormal X<vnormal>, vnumify X<vnumify>, vstringify
+X<vstringify>, vverify X<vverify>
+
+=item Multicall Functions
+
+dMULTICALL X<dMULTICALL>, MULTICALL X<MULTICALL>, POP_MULTICALL
+X<POP_MULTICALL>, PUSH_MULTICALL X<PUSH_MULTICALL>
 
 =item Numeric functions
 
-grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
-scan_hex, scan_oct
+grok_bin X<grok_bin>, grok_hex X<grok_hex>, grok_number X<grok_number>,
+grok_numeric_radix X<grok_numeric_radix>, grok_oct X<grok_oct>, scan_bin
+X<scan_bin>, scan_hex X<scan_hex>, scan_oct X<scan_oct>
 
 =item Optree Manipulation Functions
 
-cv_const_sv, newCONSTSUB, newXS
+cv_const_sv X<cv_const_sv>, newCONSTSUB X<newCONSTSUB>, newXS X<newXS>
 
 =item Pad Data Structures
 
-pad_sv
+pad_sv X<pad_sv>
+
+=item Simple Exception Handling Macros
+
+dXCPT X<dXCPT>, XCPT_CATCH X<XCPT_CATCH>, XCPT_RETHROW X<XCPT_RETHROW>,
+XCPT_TRY_END X<XCPT_TRY_END>, XCPT_TRY_START X<XCPT_TRY_START>
 
 =item Stack Manipulation Macros
 
-dMARK, dORIGMARK, dSP, EXTEND, MARK, mPUSHi, mPUSHn, mPUSHp, mPUSHu,
-mXPUSHi, mXPUSHn, mXPUSHp, mXPUSHu, ORIGMARK, POPi, POPl, POPn, POPp,
-POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHmortal, PUSHn, PUSHp, PUSHs,
-PUSHu, PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHmortal, XPUSHn, XPUSHp, XPUSHs,
-XPUSHu, XSRETURN, XSRETURN_EMPTY, XSRETURN_IV, XSRETURN_NO, XSRETURN_NV,
-XSRETURN_PV, XSRETURN_UNDEF, XSRETURN_UV, XSRETURN_YES, XST_mIV, XST_mNO,
-XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
+dMARK X<dMARK>, dORIGMARK X<dORIGMARK>, dSP X<dSP>, EXTEND X<EXTEND>, MARK
+X<MARK>, mPUSHi X<mPUSHi>, mPUSHn X<mPUSHn>, mPUSHp X<mPUSHp>, mPUSHu
+X<mPUSHu>, mXPUSHi X<mXPUSHi>, mXPUSHn X<mXPUSHn>, mXPUSHp X<mXPUSHp>,
+mXPUSHu X<mXPUSHu>, ORIGMARK X<ORIGMARK>, POPi X<POPi>, POPl X<POPl>, POPn
+X<POPn>, POPp X<POPp>, POPpbytex X<POPpbytex>, POPpx X<POPpx>, POPs
+X<POPs>, PUSHi X<PUSHi>, PUSHMARK X<PUSHMARK>, PUSHmortal X<PUSHmortal>,
+PUSHn X<PUSHn>, PUSHp X<PUSHp>, PUSHs X<PUSHs>, PUSHu X<PUSHu>, PUTBACK
+X<PUTBACK>, SP X<SP>, SPAGAIN X<SPAGAIN>, XPUSHi X<XPUSHi>, XPUSHmortal
+X<XPUSHmortal>, XPUSHn X<XPUSHn>, XPUSHp X<XPUSHp>, XPUSHs X<XPUSHs>,
+XPUSHu X<XPUSHu>, XSRETURN X<XSRETURN>, XSRETURN_EMPTY X<XSRETURN_EMPTY>,
+XSRETURN_IV X<XSRETURN_IV>, XSRETURN_NO X<XSRETURN_NO>, XSRETURN_NV
+X<XSRETURN_NV>, XSRETURN_PV X<XSRETURN_PV>, XSRETURN_UNDEF
+X<XSRETURN_UNDEF>, XSRETURN_UV X<XSRETURN_UV>, XSRETURN_YES
+X<XSRETURN_YES>, XST_mIV X<XST_mIV>, XST_mNO X<XST_mNO>, XST_mNV
+X<XST_mNV>, XST_mPV X<XST_mPV>, XST_mUNDEF X<XST_mUNDEF>, XST_mYES
+X<XST_mYES>
 
 =item SV Flags
 
-svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
+svtype X<svtype>, SVt_IV X<SVt_IV>, SVt_NV X<SVt_NV>, SVt_PV X<SVt_PV>,
+SVt_PVAV X<SVt_PVAV>, SVt_PVCV X<SVt_PVCV>, SVt_PVHV X<SVt_PVHV>, SVt_PVMG
+X<SVt_PVMG>
 
 =item SV Manipulation Functions
 
-get_sv, looks_like_number, newRV_inc, newRV_noinc, NEWSV, newSV, newSViv,
-newSVnv, newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv,
-newSVuv, SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK, SvIOKp, SvIOK_notUV,
-SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV, SvIOK_UV, SvIsCOW,
-SvIsCOW_shared_hash, SvIV, SvIVx, SvIVX, SvIV_nomg, SvLEN, SvNIOK, SvNIOKp,
-SvNIOK_off, SvNOK, SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVX,
-SvNVx, SvOK, SvOOK, SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only,
-SvPOK_only_UTF8, SvPV, SvPVbyte, SvPVbytex, SvPVbytex_force,
-SvPVbyte_force, SvPVbyte_nolen, SvPVutf8, SvPVutf8x, SvPVutf8x_force,
-SvPVutf8_force, SvPVutf8_nolen, SvPVx, SvPVX, SvPV_force, SvPV_force_nomg,
-SvPV_nolen, SvPV_nomg, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK,
-SvROK_off, SvROK_on, SvRV, SvSTASH, SvTAINT, SvTAINTED, SvTAINTED_off,
-SvTAINTED_on, SvTRUE, SvTYPE, SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off,
-SvUTF8_on, SvUV, SvUVX, SvUVx, SvUV_nomg, SvVOK, sv_2bool, sv_2cv, sv_2io,
-sv_2iv_flags, sv_2mortal, sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen, sv_2pvutf8,
-sv_2pvutf8_nolen, sv_2pv_flags, sv_2pv_nolen, sv_2uv_flags, sv_backoff,
-sv_bless, sv_catpv, sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_flags,
-sv_catpvn_mg, sv_catpvn_nomg, sv_catpv_mg, sv_catsv, sv_catsv_flags,
-sv_catsv_mg, sv_catsv_nomg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale,
-sv_collxfrm, sv_copypv, sv_dec, sv_derived_from, sv_eq, sv_force_normal,
-sv_force_normal_flags, sv_free, sv_gets, sv_grow, sv_inc, sv_insert,
-sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8, sv_magic, sv_magicext,
-sv_mortalcopy, sv_newmortal, sv_newref, sv_nv, sv_pos_b2u, sv_pos_u2b,
-sv_pv, sv_pvbyte, sv_pvbyten, sv_pvbyten_force, sv_pvn, sv_pvn_force,
-sv_pvn_force_flags, sv_pvutf8, sv_pvutf8n, sv_pvutf8n_force, sv_reftype,
-sv_replace, sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg,
-sv_setnv, sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpviv,
-sv_setpviv_mg, sv_setpvn, sv_setpvn_mg, sv_setpv_mg, sv_setref_iv,
-sv_setref_nv, sv_setref_pv, sv_setref_pvn, sv_setref_uv, sv_setsv,
-sv_setsv_flags, sv_setsv_mg, sv_setsv_nomg, sv_setuv, sv_setuv_mg,
-sv_taint, sv_tainted, sv_true, sv_unmagic, sv_unref, sv_unref_flags,
-sv_untaint, sv_upgrade, sv_usepvn, sv_usepvn_mg, sv_utf8_decode,
-sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade, sv_utf8_upgrade_flags,
-sv_uv, sv_vcatpvf, sv_vcatpvfn, sv_vcatpvf_mg, sv_vsetpvf, sv_vsetpvfn,
-sv_vsetpvf_mg
+get_sv X<get_sv>, looks_like_number X<looks_like_number>, newRV_inc
+X<newRV_inc>, newRV_noinc X<newRV_noinc>, NEWSV X<NEWSV>, newSV X<newSV>,
+newSVhek X<newSVhek>, newSViv X<newSViv>, newSVnv X<newSVnv>, newSVpv
+X<newSVpv>, newSVpvf X<newSVpvf>, newSVpvn X<newSVpvn>, newSVpvn_share
+X<newSVpvn_share>, newSVrv X<newSVrv>, newSVsv X<newSVsv>, newSVuv
+X<newSVuv>, SvCUR X<SvCUR>, SvCUR_set X<SvCUR_set>, SvEND X<SvEND>, SvGROW
+X<SvGROW>, SvIOK X<SvIOK>, SvIOKp X<SvIOKp>, SvIOK_notUV X<SvIOK_notUV>,
+SvIOK_off X<SvIOK_off>, SvIOK_on X<SvIOK_on>, SvIOK_only X<SvIOK_only>,
+SvIOK_only_UV X<SvIOK_only_UV>, SvIOK_UV X<SvIOK_UV>, SvIsCOW X<SvIsCOW>,
+SvIsCOW_shared_hash X<SvIsCOW_shared_hash>, SvIV X<SvIV>, SvIVX X<SvIVX>,
+SvIVx X<SvIVx>, SvIV_nomg X<SvIV_nomg>, SvIV_set X<SvIV_set>, SvLEN
+X<SvLEN>, SvLEN_set X<SvLEN_set>, SvMAGIC_set X<SvMAGIC_set>, SvNIOK
+X<SvNIOK>, SvNIOKp X<SvNIOKp>, SvNIOK_off X<SvNIOK_off>, SvNOK X<SvNOK>,
+SvNOKp X<SvNOKp>, SvNOK_off X<SvNOK_off>, SvNOK_on X<SvNOK_on>, SvNOK_only
+X<SvNOK_only>, SvNV X<SvNV>, SvNVX X<SvNVX>, SvNVx X<SvNVx>, SvNV_set
+X<SvNV_set>, SvOK X<SvOK>, SvOOK X<SvOOK>, SvPOK X<SvPOK>, SvPOKp
+X<SvPOKp>, SvPOK_off X<SvPOK_off>, SvPOK_on X<SvPOK_on>, SvPOK_only
+X<SvPOK_only>, SvPOK_only_UTF8 X<SvPOK_only_UTF8>, SvPV X<SvPV>, SvPVbyte
+X<SvPVbyte>, SvPVbytex X<SvPVbytex>, SvPVbytex_force X<SvPVbytex_force>,
+SvPVbyte_force X<SvPVbyte_force>, SvPVbyte_nolen X<SvPVbyte_nolen>,
+SvPVutf8 X<SvPVutf8>, SvPVutf8x X<SvPVutf8x>, SvPVutf8x_force
+X<SvPVutf8x_force>, SvPVutf8_force X<SvPVutf8_force>, SvPVutf8_nolen
+X<SvPVutf8_nolen>, SvPVX X<SvPVX>, SvPVx X<SvPVx>, SvPV_force
+X<SvPV_force>, SvPV_force_nomg X<SvPV_force_nomg>, SvPV_nolen
+X<SvPV_nolen>, SvPV_nomg X<SvPV_nomg>, SvPV_set X<SvPV_set>, SvREFCNT
+X<SvREFCNT>, SvREFCNT_dec X<SvREFCNT_dec>, SvREFCNT_inc X<SvREFCNT_inc>,
+SvROK X<SvROK>, SvROK_off X<SvROK_off>, SvROK_on X<SvROK_on>, SvRV X<SvRV>,
+SvRV_set X<SvRV_set>, SvSTASH X<SvSTASH>, SvSTASH_set X<SvSTASH_set>,
+SvTAINT X<SvTAINT>, SvTAINTED X<SvTAINTED>, SvTAINTED_off X<SvTAINTED_off>,
+SvTAINTED_on X<SvTAINTED_on>, SvTRUE X<SvTRUE>, SvTYPE X<SvTYPE>, SvUOK
+X<SvUOK>, SvUPGRADE X<SvUPGRADE>, SvUTF8 X<SvUTF8>, SvUTF8_off
+X<SvUTF8_off>, SvUTF8_on X<SvUTF8_on>, SvUV X<SvUV>, SvUVX X<SvUVX>, SvUVx
+X<SvUVx>, SvUV_nomg X<SvUV_nomg>, SvUV_set X<SvUV_set>, SvVOK X<SvVOK>,
+sv_2bool X<sv_2bool>, sv_2cv X<sv_2cv>, sv_2io X<sv_2io>, sv_2iv_flags
+X<sv_2iv_flags>, sv_2mortal X<sv_2mortal>, sv_2nv X<sv_2nv>, sv_2pvbyte
+X<sv_2pvbyte>, sv_2pvutf8 X<sv_2pvutf8>, sv_2pv_flags X<sv_2pv_flags>,
+sv_2uv_flags X<sv_2uv_flags>, sv_backoff X<sv_backoff>, sv_bless
+X<sv_bless>, sv_catpv X<sv_catpv>, sv_catpvf X<sv_catpvf>, sv_catpvf_mg
+X<sv_catpvf_mg>, sv_catpvn X<sv_catpvn>, sv_catpvn_flags
+X<sv_catpvn_flags>, sv_catpvn_nomg X<sv_catpvn_nomg>, sv_catpv_mg
+X<sv_catpv_mg>, sv_catsv X<sv_catsv>, sv_catsv_flags X<sv_catsv_flags>,
+sv_catsv_nomg X<sv_catsv_nomg>, sv_chop X<sv_chop>, sv_clear X<sv_clear>,
+sv_cmp X<sv_cmp>, sv_cmp_locale X<sv_cmp_locale>, sv_collxfrm
+X<sv_collxfrm>, sv_copypv X<sv_copypv>, sv_dec X<sv_dec>, sv_derived_from
+X<sv_derived_from>, sv_eq X<sv_eq>, sv_force_normal_flags
+X<sv_force_normal_flags>, sv_free X<sv_free>, sv_gets X<sv_gets>, sv_grow
+X<sv_grow>, sv_inc X<sv_inc>, sv_insert X<sv_insert>, sv_isa X<sv_isa>,
+sv_isobject X<sv_isobject>, sv_len X<sv_len>, sv_len_utf8 X<sv_len_utf8>,
+sv_magic X<sv_magic>, sv_magicext X<sv_magicext>, sv_mortalcopy
+X<sv_mortalcopy>, sv_newmortal X<sv_newmortal>, sv_newref X<sv_newref>,
+sv_pos_b2u X<sv_pos_b2u>, sv_pos_u2b X<sv_pos_u2b>, sv_pvbyten_force
+X<sv_pvbyten_force>, sv_pvn_force X<sv_pvn_force>, sv_pvn_force_flags
+X<sv_pvn_force_flags>, sv_pvutf8n_force X<sv_pvutf8n_force>, sv_reftype
+X<sv_reftype>, sv_replace X<sv_replace>, sv_report_used X<sv_report_used>,
+sv_reset X<sv_reset>, sv_rvweaken X<sv_rvweaken>, sv_setiv X<sv_setiv>,
+sv_setiv_mg X<sv_setiv_mg>, sv_setnv X<sv_setnv>, sv_setnv_mg
+X<sv_setnv_mg>, sv_setpv X<sv_setpv>, sv_setpvf X<sv_setpvf>, sv_setpvf_mg
+X<sv_setpvf_mg>, sv_setpviv X<sv_setpviv>, sv_setpviv_mg X<sv_setpviv_mg>,
+sv_setpvn X<sv_setpvn>, sv_setpvn_mg X<sv_setpvn_mg>, sv_setpv_mg
+X<sv_setpv_mg>, sv_setref_iv X<sv_setref_iv>, sv_setref_nv X<sv_setref_nv>,
+sv_setref_pv X<sv_setref_pv>, sv_setref_pvn X<sv_setref_pvn>, sv_setref_uv
+X<sv_setref_uv>, sv_setsv X<sv_setsv>, sv_setsv_flags X<sv_setsv_flags>,
+sv_setsv_mg X<sv_setsv_mg>, sv_setsv_nomg X<sv_setsv_nomg>, sv_setuv
+X<sv_setuv>, sv_setuv_mg X<sv_setuv_mg>, sv_tainted X<sv_tainted>, sv_true
+X<sv_true>, sv_unmagic X<sv_unmagic>, sv_unref_flags X<sv_unref_flags>,
+sv_untaint X<sv_untaint>, sv_upgrade X<sv_upgrade>, sv_usepvn X<sv_usepvn>,
+sv_usepvn_mg X<sv_usepvn_mg>, sv_utf8_decode X<sv_utf8_decode>,
+sv_utf8_downgrade X<sv_utf8_downgrade>, sv_utf8_encode X<sv_utf8_encode>,
+sv_utf8_upgrade X<sv_utf8_upgrade>, sv_utf8_upgrade_flags
+X<sv_utf8_upgrade_flags>, sv_vcatpvf X<sv_vcatpvf>, sv_vcatpvfn
+X<sv_vcatpvfn>, sv_vcatpvf_mg X<sv_vcatpvf_mg>, sv_vsetpvf X<sv_vsetpvf>,
+sv_vsetpvfn X<sv_vsetpvfn>, sv_vsetpvf_mg X<sv_vsetpvf_mg>
 
 =item Unicode Support
 
-bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
-is_utf8_string_loc, pv_uni_display, sv_cat_decode, sv_recode_to_utf8,
-sv_uni_display, to_utf8_case, to_utf8_fold, to_utf8_lower, to_utf8_title,
-to_utf8_upper, utf8n_to_uvchr, utf8n_to_uvuni, utf8_distance, utf8_hop,
-utf8_length, utf8_to_bytes, utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8,
-uvuni_to_utf8_flags
+bytes_from_utf8 X<bytes_from_utf8>, bytes_to_utf8 X<bytes_to_utf8>,
+ibcmp_utf8 X<ibcmp_utf8>, is_utf8_char X<is_utf8_char>, is_utf8_string
+X<is_utf8_string>, is_utf8_string_loc X<is_utf8_string_loc>,
+is_utf8_string_loclen X<is_utf8_string_loclen>, pv_uni_display
+X<pv_uni_display>, sv_cat_decode X<sv_cat_decode>, sv_recode_to_utf8
+X<sv_recode_to_utf8>, sv_uni_display X<sv_uni_display>, to_utf8_case
+X<to_utf8_case>, to_utf8_fold X<to_utf8_fold>, to_utf8_lower
+X<to_utf8_lower>, to_utf8_title X<to_utf8_title>, to_utf8_upper
+X<to_utf8_upper>, utf8n_to_uvchr X<utf8n_to_uvchr>, utf8n_to_uvuni
+X<utf8n_to_uvuni>, utf8_distance X<utf8_distance>, utf8_hop X<utf8_hop>,
+utf8_length X<utf8_length>, utf8_to_bytes X<utf8_to_bytes>, utf8_to_uvchr
+X<utf8_to_uvchr>, utf8_to_uvuni X<utf8_to_uvuni>, uvchr_to_utf8
+X<uvchr_to_utf8>, uvuni_to_utf8_flags X<uvuni_to_utf8_flags>
 
 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
 
-ax, CLASS, dAX, dITEMS, dUNDERBAR, dXSARGS, dXSI32, items, ix, newXSproto,
-RETVAL, ST, THIS, UNDERBAR, XS, XS_VERSION, XS_VERSION_BOOTCHECK
+ax X<ax>, CLASS X<CLASS>, dAX X<dAX>, dAXMARK X<dAXMARK>, dITEMS X<dITEMS>,
+dUNDERBAR X<dUNDERBAR>, dXSARGS X<dXSARGS>, dXSI32 X<dXSI32>, items
+X<items>, ix X<ix>, newXSproto X<newXSproto>, RETVAL X<RETVAL>, ST X<ST>,
+THIS X<THIS>, UNDERBAR X<UNDERBAR>, XS X<XS>, XS_VERSION X<XS_VERSION>,
+XS_VERSION_BOOTCHECK X<XS_VERSION_BOOTCHECK>
 
 =item Warning and Dieing
 
-croak, warn
+croak X<croak>, warn X<warn>
 
 =item AUTHORS
 
@@ -4808,51 +5525,72 @@ croak, warn
 =over 4
 
 =item DESCRIPTION
+X<internal Perl functions> X<interpreter functions>
 
 =item CV reference counts and CvOUTSIDE
 
-CvWEAKOUTSIDE
+CvWEAKOUTSIDE X<CvWEAKOUTSIDE>
 
 =item Functions in file pad.h
 
-CX_CURPAD_SAVE, CX_CURPAD_SV, PAD_BASE_SV, PAD_CLONE_VARS,
-PAD_COMPNAME_FLAGS, PAD_COMPNAME_GEN, PAD_COMPNAME_OURSTASH,
-PAD_COMPNAME_PV, PAD_COMPNAME_TYPE, PAD_DUP, PAD_RESTORE_LOCAL,
-PAD_SAVE_LOCAL, PAD_SAVE_SETNULLPAD, PAD_SETSV, PAD_SET_CUR,
-PAD_SET_CUR_NOSAVE, PAD_SV, PAD_SVl, SAVECLEARSV, SAVECOMPPAD, SAVEPADSV
+CX_CURPAD_SAVE X<CX_CURPAD_SAVE>, CX_CURPAD_SV X<CX_CURPAD_SV>, PAD_BASE_SV
+X<PAD_BASE_SV>, PAD_CLONE_VARS X<PAD_CLONE_VARS>, PAD_COMPNAME_FLAGS
+X<PAD_COMPNAME_FLAGS>, PAD_COMPNAME_GEN X<PAD_COMPNAME_GEN>,
+PAD_COMPNAME_GEN_set X<PAD_COMPNAME_GEN_set>, PAD_COMPNAME_OURSTASH
+X<PAD_COMPNAME_OURSTASH>, PAD_COMPNAME_PV X<PAD_COMPNAME_PV>,
+PAD_COMPNAME_TYPE X<PAD_COMPNAME_TYPE>, PAD_DUP X<PAD_DUP>,
+PAD_RESTORE_LOCAL X<PAD_RESTORE_LOCAL>, PAD_SAVE_LOCAL X<PAD_SAVE_LOCAL>,
+PAD_SAVE_SETNULLPAD X<PAD_SAVE_SETNULLPAD>, PAD_SETSV X<PAD_SETSV>,
+PAD_SET_CUR X<PAD_SET_CUR>, PAD_SET_CUR_NOSAVE X<PAD_SET_CUR_NOSAVE>,
+PAD_SV X<PAD_SV>, PAD_SVl X<PAD_SVl>, SAVECLEARSV X<SAVECLEARSV>,
+SAVECOMPPAD X<SAVECOMPPAD>, SAVEPADSV X<SAVEPADSV>
 
 =item Functions in file pp_ctl.c
 
-find_runcv
+find_runcv X<find_runcv>
 
 =item Global Variables
 
-PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
-PL_rs
+PL_DBsingle X<PL_DBsingle>, PL_DBsub X<PL_DBsub>, PL_DBtrace X<PL_DBtrace>,
+PL_dowarn X<PL_dowarn>, PL_last_in_gv X<PL_last_in_gv>, PL_ofs_sv
+X<PL_ofs_sv>, PL_rs X<PL_rs>
 
 =item GV Functions
 
-is_gv_magical
+is_gv_magical X<is_gv_magical>, is_gv_magical_sv X<is_gv_magical_sv>
 
 =item IO Functions
 
-start_glob
+start_glob X<start_glob>
+
+=item Magical Functions
+
+mg_localize X<mg_localize>
 
 =item Pad Data Structures
 
-CvPADLIST, cv_clone, cv_dump, do_dump_pad, intro_my, pad_add_anon,
-pad_add_name, pad_alloc, pad_block_start, pad_check_dup, pad_findlex,
-pad_findmy, pad_fixup_inner_anons, pad_free, pad_leavemy, pad_new,
-pad_push, pad_reset, pad_setsv, pad_swipe, pad_tidy, pad_undef
+CvPADLIST X<CvPADLIST>, cv_clone X<cv_clone>, cv_dump X<cv_dump>,
+do_dump_pad X<do_dump_pad>, intro_my X<intro_my>, pad_add_anon
+X<pad_add_anon>, pad_add_name X<pad_add_name>, pad_alloc X<pad_alloc>,
+pad_block_start X<pad_block_start>, pad_check_dup X<pad_check_dup>,
+pad_findlex X<pad_findlex>, pad_findmy X<pad_findmy>, pad_fixup_inner_anons
+X<pad_fixup_inner_anons>, pad_free X<pad_free>, pad_leavemy X<pad_leavemy>,
+pad_new X<pad_new>, pad_push X<pad_push>, pad_reset X<pad_reset>, pad_setsv
+X<pad_setsv>, pad_swipe X<pad_swipe>, pad_tidy X<pad_tidy>, pad_undef
+X<pad_undef>
 
 =item Stack Manipulation Macros
 
-djSP, LVRET
+djSP X<djSP>, LVRET X<LVRET>
 
 =item SV Manipulation Functions
 
-find_uninit_var, report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs,
-sv_free_arenas
+sv_add_arena X<sv_add_arena>, sv_clean_all X<sv_clean_all>, sv_clean_objs
+X<sv_clean_objs>, sv_free_arenas X<sv_free_arenas>
+
+=item Unicode Support
+
+find_uninit_var X<find_uninit_var>, report_uninit X<report_uninit>
 
 =item AUTHORS
 
@@ -5007,7 +5745,7 @@ Core modules, Tests, Documentation, Configure, Interpreter
 
 =item Elements of the interpreter
 
-Startup, Parsing, Optimization, Running
+Startup, Parsing, Optimization, Running, Exception handing
 
 =item Internal Variable Types
 
@@ -5049,11 +5787,12 @@ t/cmd t/run t/io t/op, t/lib ext lib
 coretest, test.deparse, test.taintwarn, minitest, test.valgrind
 check.valgrind utest.valgrind ucheck.valgrind, test.third check.third
 utest.third ucheck.third, test.torture torturetest, utest ucheck test.utf8
-check.utf8, minitest.utf16 test.utf16, test_harness
+check.utf8, minitest.utf16 test.utf16, test_harness, test-notty test_notty
 
 =item Running tests by hand
 
-PERL_CORE=1, PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
+-v, -torture, -re=PATTERN, -re LIST OF PATTERNS, PERL_CORE=1,
+PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
 
 =back
 
@@ -5077,6 +5816,8 @@ DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
 
 =item PERL_DESTRUCT_LEVEL
 
+=item PERL_MEM_LOG
+
 =item Profiling
 
 =item Gprof Profiling
@@ -5116,155 +5857,169 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =item DESCRIPTION
 
-=item assertions
-
-=item iCOW
-
-=item (?{...}) closures in regexps
+=item The roadmap to 5.10
 
-=item A re-entrant regexp engine
+=over 4
 
-=item pragmata
+=item Needed for a 5.9.4 release
 
-=over 4
+=item Needed for a 5.9.5 release
 
-=item lexical pragmas
+Implement L</_ prototype character>, Implement L</state variables>
 
-=item use less 'memory'
+=item Needed for a 5.9.6 release
 
 =back
 
-=item prototypes and functions
+=item Tasks that only need Perl knowledge
 
 =over 4
 
-=item _ prototype character
+=item common test code for timed bail out
 
-=item inlining autoloaded constants
+=item POD -> HTML conversion in the core still sucks
 
-=item Finish off lvalue functions
+=item Parallel testing
 
-=back
+=item Make Schwern poorer
 
-=item Unicode and UTF8
+=item Improve the coverage of the core tests
 
-=over 4
+=item test B
 
-=item Implicit Latin 1 => Unicode translation
+=item A decent benchmark
 
-=item UTF8 caching code
+=item fix tainting bugs
 
-=item Unicode in Filenames
+=item Dual life everything
 
-=item Unicode in %ENV
+=item Improving C<threads::shared>
+
+=item POSIX memory footprint
 
 =back
 
-=item Regexps
+=item Tasks that need a little sysadmin-type knowledge
 
 =over 4
 
-=item regexp optimiser optional
+=item Relocatable perl
 
-=item common suffices/prefices in regexps (trie optimization)
+=item make HTML install work
 
-=back
+=item compressed man pages
 
-=item POD
+=item Add a code coverage target to the Makefile
 
-=over 4
+=item Make Config.pm cope with differences between build and installed perl
+
+=item make parallel builds work
 
-=item POD -> HTML conversion still sucks
+=item linker specification files
 
 =back
 
-=item Misc medium sized projects
+=item Tasks that need a little C knowledge
 
 =over 4
 
-=item UNITCHECK
+=item Make it clear from -v if this is the exact official release
 
-=item optional optimizer
+=item Tidy up global variables
 
-=item You WANT *how* many
+=item Ordering of "global" variables.
 
-=item lexical aliases
+=item bincompat functions
+
+=item am I hot or not?
+
+=item emulate the per-thread memory pool on Unix
+
+=item reduce duplication in sv_setsv_flags
 
-=item no 6
+=back
+
+=item Tasks that need a knowledge of XS
+
+=over 4
 
 =item IPv6
 
-=item entersub XS vs Perl
+=item shrink C<GV>s, C<CV>s
 
-=item @INC source filter to Filter::Simple
+=item merge Perl_sv_2[inpu]v
 
-=item bincompat functions
+=item UTF8 caching code
 
-=item Use fchown/fchmod internally
+=item Implicit Latin 1 => Unicode translation
 
-=back
+=item autovivification
 
-=item Tests
+=item Unicode in Filenames
 
-=over 4
+=item Unicode in %ENV
 
-=item Make Schwern poorer
+=item use less 'memory'
 
-=item test B
+=item Re-implement C<:unique> in a way that is actually thread-safe
 
-=item Improve tests for Config.pm
+=item Make tainting consistent
 
-=item common test code for timed bailout
+=item readpipe(LIST)
 
 =back
 
-=item Installation
+=item Tasks that need a knowledge of the interpreter
 
 =over 4
 
-=item compressed man pages
+=item lexical pragmas
 
-=item Make Config.pm cope with differences between build and installed perl
+=item Attach/detach debugger from running program
 
-=item Relocatable perl
+=item Constant folding
 
-=item make HTML install work
+=item LVALUE functions for lists
 
-=item put patchlevel in -v
+=item LVALUE functions in the debugger
 
-=back
+=item _ prototype character
 
-=item Incremental things
+=item state variables
 
-=over 4
+=item @INC source filter to Filter::Simple
 
-=item autovivification
+=item regexp optimiser optional
 
-=item fix tainting bugs
+=item UNITCHECK
 
-=item Make tainting consistent
+=item optional optimizer
 
-=item Dual life everything
+=item You WANT *how* many
 
-=back
+=item lexical aliases
 
-=item Vague things
+=item entersub XS vs Perl
 
-=over 4
+=item Self ties
 
-=item threads
+=item Optimize away @_
 
-=item POSIX memory footprint
+=item What hooks would assertions need?
 
-=item Optimize away @_
+=back
 
-=item switch ops
+=item Big projects
 
-=item Attach/detach debugger from running program
+=over 4
 
-=item A decent benchmark
+=item make ithreads more robust
 
-=item readpipe(LIST)
+=item iCOW
+
+=item (?{...}) closures in regexps
+
+=item A re-entrant regexp engine
 
 =back
 
@@ -5283,7 +6038,7 @@ I<The Road goes ever on and on, down from the door where it began.>
 B<-h>, B<-v>, B<-t>, B<-u>, B<-m> I<module>, B<-l>, B<-F>, B<-f>
 I<perlfunc>, B<-q> I<perlfaq-search-regexp>, B<-T>, B<-d>
 I<destination-filename>, B<-o> I<output-formatname>, B<-M> I<module-name>,
-B<-w> I<option:value> or B<-w> I<option>, B<-X>,
+B<-w> I<option:value> or B<-w> I<option>, B<-X>, B<-L> I<language_code>,
 B<PageName|ModuleName|ProgramName>, B<-n> I<some-formatter>, B<-r>, B<-i>,
 B<-V>
 
@@ -5325,7 +6080,7 @@ B<-V>
 
 =back
 
-=head2 perldelta - what is new for perl v5.9.2
+=head2 perldelta - what is new for perl v5.9.3
 
 =over 4
 
@@ -5333,83 +6088,347 @@ B<-V>
 
 =item Incompatible Changes
 
-=item Core Enhancements
+=over 4
 
-=item Modules and Pragmata
+=item Parsing of C<-f _>
 
-=item Utility Changes
+=item C<mkdir()>
 
-=item Documentation
+=item Magic goto and eval
 
-=item Performance Enhancements
+=item C<$#> has been removed
 
-=item Installation and Configuration Improvements
+=item C<:unique>
 
-=item Selected Bug Fixes
+=back
 
-=item New or Changed Diagnostics
+=item Core Enhancements
 
-=item Changed Internals
+=over 4
 
-=item Known Problems
+=item Switch and Smart Match operator
 
-=over 4
+=item C<say()>
 
-=item Platform Specific Problems
+=item C<CLONE_SKIP()>
 
-=back
+=item C<${^CHILD_ERROR_NATIVE}>
 
-=item Reporting Bugs
+=item Assertions
 
-=item SEE ALSO
+=item Unicode Character Database 4.1.0
+
+=item C<no VERSION>
 
 =back
 
-=head2 perl592delta, perldelta - what is new for perl v5.9.2
+=item Modules and Pragmata
 
 =over 4
 
-=item DESCRIPTION
+=item C<feature>
 
-=item Incompatible Changes
+=item C<assertions::compat>
 
-=item Core Enhancements
+=item C<Math::BigInt::FastCalc>
 
-=item Modules and Pragmata
+=item C<Compress::Zlib>
 
-=item Utility Changes
+=item C<IO::Zlib>
 
-=item Documentation
+=item C<Archive::Tar>
 
-=item Performance Enhancements
+=back
 
-=item Installation and Configuration Improvements
+=item Utility Changes
 
-=item Selected Bug Fixes
+=over 4
 
-=item New or Changed Diagnostics
+=item C<ptar>
 
-=item Changed Internals
+=back
 
-=item Known Problems
+=item Documentation
 
 =over 4
 
-=item Platform Specific Problems
+=item Perl Glossary
 
 =back
 
-=item Reporting Bugs
+=item Performance Enhancements
 
-=item SEE ALSO
+=item Installation and Configuration Improvements
+
+=over 4
+
+=item New Or Improved Platforms
+
+=item Module auxiliary files
 
 =back
 
-=head2 perl591delta, perldelta - what is new for perl v5.9.1
+=item Selected Bug Fixes
 
 =over 4
 
-=item DESCRIPTION
+=item C<defined $$x>
+
+=item Smaller fixes
+
+=item More Unicode Fixes
+
+=back
+
+=item New or Changed Diagnostics
+
+=over 4
+
+=item Attempt to set length of freed array
+
+=item Search pattern not terminated or ternary operator parsed as search
+pattern
+
+=item "%s" variable %s masks earlier declaration
+
+=back
+
+=item Changed Internals
+
+=over 4
+
+=item B:: modules inheritance changed
+
+=back
+
+=item Known Problems
+
+=over 4
+
+=item Platform Specific Problems
+
+=back
+
+=item Reporting Bugs
+
+=item SEE ALSO
+
+=back
+
+=head2 perl593delta, perldelta - what is new for perl v5.9.3
+
+=over 4
+
+=item DESCRIPTION
+
+=item Incompatible Changes
+
+=over 4
+
+=item Parsing of C<-f _>
+
+=item C<mkdir()>
+
+=item Magic goto and eval
+
+=item C<$#> has been removed
+
+=item C<:unique>
+
+=back
+
+=item Core Enhancements
+
+=over 4
+
+=item Switch and Smart Match operator
+
+=item C<say()>
+
+=item C<CLONE_SKIP()>
+
+=item C<${^CHILD_ERROR_NATIVE}>
+
+=item Assertions
+
+=item Unicode Character Database 4.1.0
+
+=item C<no VERSION>
+
+=back
+
+=item Modules and Pragmata
+
+=over 4
+
+=item C<feature>
+
+=item C<assertions::compat>
+
+=item C<Math::BigInt::FastCalc>
+
+=item C<Compress::Zlib>
+
+=item C<IO::Zlib>
+
+=item C<Archive::Tar>
+
+=back
+
+=item Utility Changes
+
+=over 4
+
+=item C<ptar>
+
+=back
+
+=item Documentation
+
+=over 4
+
+=item Perl Glossary
+
+=back
+
+=item Performance Enhancements
+
+=item Installation and Configuration Improvements
+
+=over 4
+
+=item New Or Improved Platforms
+
+=item Module auxiliary files
+
+=back
+
+=item Selected Bug Fixes
+
+=over 4
+
+=item C<defined $$x>
+
+=item Smaller fixes
+
+=item More Unicode Fixes
+
+=back
+
+=item New or Changed Diagnostics
+
+=over 4
+
+=item Attempt to set length of freed array
+
+=item Search pattern not terminated or ternary operator parsed as search
+pattern
+
+=item "%s" variable %s masks earlier declaration
+
+=back
+
+=item Changed Internals
+
+=over 4
+
+=item B:: modules inheritance changed
+
+=back
+
+=item Known Problems
+
+=over 4
+
+=item Platform Specific Problems
+
+=back
+
+=item Reporting Bugs
+
+=item SEE ALSO
+
+=back
+
+=head2 perl592delta, perldelta - what is new for perl v5.9.2
+
+=over 4
+
+=item DESCRIPTION
+
+=item Incompatible Changes
+
+=over 4
+
+=item Packing and UTF-8 strings
+
+=item Miscellaneous
+
+=back
+
+=item Core Enhancements
+
+=over 4
+
+=item Malloc wrapping
+
+=item Unicode Character Database 4.0.1
+
+=item suidperl less insecure
+
+=item PERLIO_DEBUG
+
+=item Formats
+
+=item Unicode Character Classes
+
+=item Byte-order modifiers for pack() and unpack()
+
+=item Byte count feature in pack()
+
+=item New variables
+
+=back
+
+=item Modules and Pragmata
+
+=over 4
+
+=item New modules
+
+=item Updated And Improved Modules and Pragmata
+
+B::Concise, Socket, Sys::Syslog, threads
+
+=back
+
+=item Utility Changes
+
+=item Performance Enhancements
+
+=item Installation and Configuration Improvements
+
+=item Selected Bug Fixes
+
+=item New or Changed Diagnostics
+
+=item Changed Internals
+
+=item Known Problems
+
+=item Plans for the next release
+
+=item Reporting Bugs
+
+=item SEE ALSO
+
+=back
+
+=head2 perl591delta, perldelta - what is new for perl v5.9.1
+
+=over 4
+
+=item DESCRIPTION
 
 =item Incompatible Changes
 
@@ -5652,7 +6671,7 @@ Win32::GetOSVersion
 
 =back
 
-=head2 perl586delta - what is new for perl v5.8.6
+=head2 perl587delta, perldelta - what is new for perl v5.8.7
 
 =over 4
 
@@ -5662,19 +6681,41 @@ Win32::GetOSVersion
 
 =item Core Enhancements
 
+=over 4
+
+=item Unicode Character Database 4.1.0
+
+=item suidperl less insecure
+
+=item Optional site customization script
+
+=item C<Config.pm> is now much smaller.
+
+=back
+
 =item Modules and Pragmata
 
 =item Utility Changes
 
+=over 4
+
+=item find2perl enhancements
+
+=back
+
 =item Performance Enhancements
 
+=item Installation and Configuration Improvements
+
 =item Selected Bug Fixes
 
 =item New or Changed Diagnostics
 
 =item Changed Internals
 
-=item New Tests
+=item Known Problems
+
+=item Platform Specific Problems
 
 =item Reporting Bugs
 
@@ -5682,7 +6723,7 @@ Win32::GetOSVersion
 
 =back
 
-=head2 perl585delta - what is new for perl v5.8.5
+=head2 perl586delta - what is new for perl v5.8.6
 
 =over 4
 
@@ -5696,15 +6737,7 @@ Win32::GetOSVersion
 
 =item Utility Changes
 
-=over 4
-
-=item Perl's debugger
-
-=item h2ph
-
-=back
-
-=item Installation and Configuration Improvements
+=item Performance Enhancements
 
 =item Selected Bug Fixes
 
@@ -5712,9 +6745,7 @@ Win32::GetOSVersion
 
 =item Changed Internals
 
-=item Known Problems
-
-=item Platform Specific Problems
+=item New Tests
 
 =item Reporting Bugs
 
@@ -5722,7 +6753,7 @@ Win32::GetOSVersion
 
 =back
 
-=head2 perl584delta - what is new for perl v5.8.4
+=head2 perl585delta - what is new for perl v5.8.5
 
 =over 4
 
@@ -5732,11 +6763,51 @@ Win32::GetOSVersion
 
 =item Core Enhancements
 
-=over 4
+=item Modules and Pragmata
 
-=item Malloc wrapping
+=item Utility Changes
 
-=item Unicode Character Database 4.0.1
+=over 4
+
+=item Perl's debugger
+
+=item h2ph
+
+=back
+
+=item Installation and Configuration Improvements
+
+=item Selected Bug Fixes
+
+=item New or Changed Diagnostics
+
+=item Changed Internals
+
+=item Known Problems
+
+=item Platform Specific Problems
+
+=item Reporting Bugs
+
+=item SEE ALSO
+
+=back
+
+=head2 perl584delta - what is new for perl v5.8.4
+
+=over 4
+
+=item DESCRIPTION
+
+=item Incompatible Changes
+
+=item Core Enhancements
+
+=over 4
+
+=item Malloc wrapping
+
+=item Unicode Character Database 4.0.1
 
 =item suidperl less insecure
 
@@ -6752,6 +7823,8 @@ NCR MP-RAS, NonStop-UX
 
 =item Arrays now always interpolate into double-quoted strings
 
+=item @- and @+ provide starting/ending offsets of regex submatches
+
 =back
 
 =item Modules and Pragmata
@@ -7134,6 +8207,8 @@ to mean "${$}<digit>" is deprecated
 
 =item Arrays now always interpolate into double-quoted strings
 
+=item @- and @+ provide starting/ending offsets of regex matches
+
 =back
 
 =item Modules and Pragmata
@@ -7927,26 +9002,30 @@ B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
 
 =back
 
-=head2 perlbeos, README.beos - Perl version 5 on BeOS
+=head2 perlbeos, README.beos - Perl version 5.8+ on BeOS
 
 =over 4
 
 =item DESCRIPTION
 
-=over 4
+=item BUILD AND INSTALL
 
-=item General Issues with Perl on BeOS
+=over 4
 
-=item BeOS Release-specific Notes
+=item Requirements
 
-R4 x86, R4 PPC
+=item Configure
 
-=item Contact Information
+=item Build
 
-=item Update 2002-05-30
+=item Install
 
 =back
 
+=item KNOWN PROBLEMS
+
+=item CONTACT
+
 =back
 
 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
@@ -7999,21 +9078,42 @@ R4 x86, R4 PPC
 
 =over 4
 
+=item Building Perl for WinCE
+
+=over 4
+
 =item DESCRIPTION
 
+=item General explanations on cross-compiling WinCE
+
 =item BUILD
 
+Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
+celib-sources, Rainer Keuchel's console-sources, go to ./wince
+subdirectory, edit file compile.bat, run    compile.bat, run   compile.bat
+dist
+
+=back
+
+=item Using Perl on WinCE
+
 =over 4
 
-=item Tools & SDK
+=item DESCRIPTION
 
-Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
-celib-sources, Rainer Keuchel's console-sources
+=item LIMITATIONS
 
-=item Make
+=item ENVIRONMENT
+
+=item REGISTRY
+
+=item PERLFILES
 
-go to ./wince subdirectory, edit file compile.bat, run   compile.bat, run 
-  compile.bat dist
+=item XS
+
+=item BUGS
+
+=item INSTALLATION
 
 =back
 
@@ -8021,6 +9121,8 @@ go to ./wince subdirectory, edit file compile.bat, run      compile.bat, run
 
 =item AUTHORS
 
+Rainer Keuchel <coyxc@rainer-keuchel.de>, Vadim Konovalov
+
 =back
 
 =head2 perlcygwin, README.cygwin - Perl for Cygwin
@@ -8084,9 +9186,20 @@ I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
 
 =item C<fork()> failures in io_* tests
 
+=back
+
+=item Specific features of the Cygwin port
+
+=over 4
+
 =item Script Portability on Cygwin
 
-Pathnames, Text/Binary, PerlIO, F<.exe>, C<chown()>, Miscellaneous
+Pathnames, Text/Binary, PerlIO, F<.exe>, cygwin vs. windows process ids,
+C<chown()>, Miscellaneous
+
+=item Prebuilt methods:
+
+C<Cwd::cwd>, C<Cygwin::pid_to_winpid>, C<Cygwin::winpid_to_pid>
 
 =back
 
@@ -8338,6 +9451,22 @@ DJGPP, Pthreads
 
 =back
 
+=head2 perllinux, README.linux - Perl version 5 on Linux systems
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item Experimental Support for Sun Studio Compilers for Linux OS
+
+=back
+
+=item AUTHOR
+
+=back
+
 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
 systems
 
@@ -8393,7 +9522,13 @@ op/lexassign.t, pragma/warnings.t
 
 =item libperl and Prebinding
 
-=item Updating Panther
+=item Updating Apple-supplied Perl
+
+=item 64-bit Perl
+
+=item Intel processor support
+
+=item  Universal binaries
 
 =item Known problems
 
@@ -8502,6 +9637,23 @@ SetNWBld.bat, Buildtype.bat
 
 =back
 
+=head2 perlopenbsd, README.openbsd - Perl version 5 on OpenBSD systems
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item OpenBSD core dumps from getprotobyname_r and getservbyname_r with
+ithreads
+
+=back
+
+=item AUTHOR
+
+=back
+
 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
 
 =over 4
@@ -8958,7 +10110,8 @@ Solaris FAQ, Precompiled Binaries, Solaris Documentation
 
 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
 relocation error:, dlopen: stub interception failed, #error "No
-DATAMODEL_NATIVE specified", sh: ar: not found
+DATAMODEL_NATIVE specified", sh: ar: not found, warning: dead part of
+constant expression is nonconstant
 
 =item MAKE TEST
 
@@ -8998,7 +10151,41 @@ DATAMODEL_NATIVE specified", sh: ar: not found
 
 =item AUTHOR
 
-=item LAST MODIFIED
+=back
+
+=head2 perlsymbian, README.symbian - Perl version 5 on Symbian OS
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item Compiling Perl on Symbian
+
+=item Compilation problems
+
+=item PerlApp
+
+=item sisify.pl
+
+=item Using Perl in Symbian
+
+=back
+
+=item TO DO
+
+=item WARNING
+
+=item NOTE
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=item LICENSE
+
+=item HISTORY
 
 =back
 
@@ -9137,10 +10324,10 @@ Digital UNIX formerly known as DEC OSF/1) systems
 
 =item Perl functions
 
-File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
-exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
-(system call), stat EXPR, system LIST, time, times, unlink LIST, utime
-LIST, waitpid PID,FLAGS
+File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, die,
+dump, exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//,
+select (system call), stat EXPR, system LIST, time, times, unlink LIST,
+utime LIST, waitpid PID,FLAGS
 
 =item Perl variables
 
@@ -9232,7 +10419,8 @@ Extensions, Notes on 64-bit Windows
 
 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
-E<lt>nick@ing-simmons.netE<gt>
+E<lt>nick@ing-simmons.netE<gt>, Jan Dubois E<lt>jand@activestate.comE<gt>,
+Steve Hay E<lt>steve.hay@uk.radan.comE<gt>
 
 =item SEE ALSO
 
@@ -9312,8 +10500,8 @@ A thread exited while %d other threads were still running
 
 =item BUGS
 
-Parent-Child threads, Returning objects, Creating threads inside BEGIN
-blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
+Parent-Child threads, tid is I32, Returning objects, Creating threads
+inside BEGIN blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
 
 =item AUTHOR and COPYRIGHT
 
@@ -9329,6 +10517,18 @@ blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
 
 =item DESCRIPTION
 
+=over 4
+
+=item Selecting assertions
+
+=item Handling assertions your own way
+
+enabled($on), enabled(), seen($on), seen()
+
+=back
+
+=item COMPATIBILITY
+
 =item SEE ALSO
 
 =item AUTHOR
@@ -9353,6 +10553,30 @@ blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
 
 =back
 
+=head2 assertions::compat - assertions for pre-5.9 versions of perl
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item The C<assertion> attribute handler
+
+=item Assertion execution status as a constant
+
+=back
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
 =head2 attributes - get/set subroutine or variable attributes
 
 =over 4
@@ -9443,19 +10667,19 @@ Base class package "%s" is empty
 
 =over 4
 
-=item OPTIONS
+=item Options
 
 a or accuracy, p or precision, t or trace, l or lib, v or version
 
-=item MATH LIBRARY
+=item Math Library
 
-=item INTERNAL FORMAT
+=item Internal Format
 
-=item SIGN
+=item Sign
 
-=item METHODS
+=item Methods
 
-=item CAVEAT
+=item Caveat
 
 =back
 
@@ -9481,13 +10705,13 @@ a or accuracy, p or precision, t or trace, l or lib, v or version
 
 =over 4
 
-=item OPTIONS
+=item Options
 
 a or accuracy, p or precision, t or trace, l or lib, v or version
 
-=item METHODS
+=item Methods
 
-=item CAVEAT
+=item Caveat
 
 inf(), NaN(), upgrade()
 
@@ -9521,15 +10745,19 @@ inf(), NaN(), upgrade()
 
 =over 4
 
-=item MODULES USED
+=item Modules Used
 
-=item MATH LIBRARY
+=item Math Library
 
-=item SIGN
+=item Sign
 
-=item METHODS
+=item Methods
 
-=item CAVEAT
+=item Caveat
+
+=item Options
+
+a or accuracy, p or precision, t or trace, l or lib, v or version
 
 =back
 
@@ -9578,6 +10806,36 @@ semantics
 
 =back
 
+=head2 c, constant - Perl pragma to declare constants
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item NOTES
+
+=over 4
+
+=item List constants
+
+=item Defining multiple constants at once
+
+=item Magic constants
+
+=back
+
+=item TECHNICAL NOTES
+
+=item BUGS
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
 =head2 charnames - define character names for C<\N{named}> string literal
 escapes
 
@@ -9736,37 +10994,46 @@ literals in regex that are longer than 127 bytes, EBCDIC, format
 
 =back
 
-=head2 fields - compile-time class fields
+=head2 encoding::warnings - Warn on implicit encoding conversions
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-new, phash
+=over 4
 
-=item SEE ALSO
+=item Overview of the problem
 
-=back
+=item Detecting the problem
 
-=head2 filetest - Perl pragma to control the filetest permission operators
+=item Solving the problem
 
-=over 4
+Upgrade both sides to unicode-strings, Downgrade both sides to
+byte-strings, Specify the encoding for implicit byte-string upgrading,
+PerlIO layers for B<STDIN> and B<STDOUT>, Literal conversions, Implicit
+upgrading for byte-strings
 
-=item SYNOPSIS
+=back
 
-=item DESCRIPTION
+=item CAVEATS
+
+=back
 
 =over 4
 
-=item subpragma access
+=item SEE ALSO
 
-=back
+=item AUTHORS
+
+=item COPYRIGHT
 
 =back
 
-=head2 if - C<use> a Perl module if a condition holds
+=head2 feature - Perl pragma to enable new syntactic features
 
 =over 4
 
@@ -9774,24 +11041,23 @@ new, phash
 
 =item DESCRIPTION
 
-=item BUGS
+=over 4
 
-=item AUTHOR
+=item The 'switch' feature
 
-=back
+=item The '~~' feature
 
-=head2 integer - Perl pragma to use integer arithmetic instead of floating
-point
+=item The 'say' feature
 
-=over 4
+=item the 'err' feature
 
-=item SYNOPSIS
+=back
 
-=item DESCRIPTION
+=item FEATURE BUNDLES
 
 =back
 
-=head2 less - perl pragma to request less of something from the compiler
+=head2 fields - compile-time class fields
 
 =over 4
 
@@ -9799,9 +11065,64 @@ point
 
 =item DESCRIPTION
 
-=back
+new, phash
 
-=head2 lib - manipulate @INC at compile time
+=item SEE ALSO
+
+=back
+
+=head2 filetest - Perl pragma to control the filetest permission operators
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item subpragma access
+
+=back
+
+=back
+
+=head2 if - C<use> a Perl module if a condition holds
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item BUGS
+
+=item AUTHOR
+
+=back
+
+=head2 integer - Perl pragma to use integer arithmetic instead of floating
+point
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=head2 less - perl pragma to request less of something from the compiler
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=head2 lib - manipulate @INC at compile time
 
 =over 4
 
@@ -9868,7 +11189,7 @@ operations
 
 =back
 
-=head2 overload - Package for overloading perl operations
+=head2 overload - Package for overloading Perl operations
 
 =over 4
 
@@ -9911,6 +11232,8 @@ is inherited by derived classes
 
 =item Fallback
 
+=item Smart Match
+
 C<undef>, TRUE, defined, but FALSE
 
 =item Copy Constructor
@@ -10105,15 +11428,19 @@ utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
 
 =over 4
 
-=item What IS a version
+=item BEST PRACTICES
 
-Numeric Versions, Quoted Versions
+Be consistent, Be careful
 
-=item What about v-strings?
+=item What IS a version
+
+Numeric Versions, Extended Versions
 
 =item Numeric Versions
 
-=item Quoted Versions
+=item Extended Versions
+
+=item Numeric Alpha Versions
 
 =item Object Methods
 
@@ -10122,14 +11449,18 @@ operators, Logical Operators
 
 =item Quoting
 
+=item What about v-strings?
+
 =item Types of Versions Objects
 
-Ordinary versions, Alpha versions
+Ordinary versions, Alpha Versions
 
 =item Replacement UNIVERSAL::VERSION
 
 =back
 
+=item SUBCLASSING
+
 =item EXPORT
 
 =item AUTHOR
@@ -10198,347 +11529,332 @@ warnings::warnif($object, $message)
 
 =back
 
-=head2 Attribute::Handlers - Simpler definition of attribute handlers
+=head2 Archive::Tar - module for manipulations of tar archives
 
 =over 4
 
-=item VERSION
-
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-[0], [1], [2], [3], [4], [5]
+=item Object Methods
 
 =over 4
 
-=item Typed lexicals
-
-=item Type-specific attribute handlers
-
-=item Non-interpretive attribute handlers
-
-=item Phase-specific attribute handlers
+=item Archive::Tar->new( [$file, $compressed] )
 
-=item Attributes as C<tie> interfaces
+=back
 
 =back
 
-=item EXAMPLES
+=over 4
 
-=item DIAGNOSTICS
+=item $tar->read ( $filename|$handle, $compressed, {opt => 'val'} )
 
-C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
-attributes>, C<Declaration of %s attribute in package %s may clash with
-future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
-C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
-be able to apply END handler>
+limit, extract
 
-=item AUTHOR
+=back
 
-=item BUGS
+=over 4
 
-=item COPYRIGHT
+=item $tar->contains_file( $filename )
 
 =back
 
-=head2 AutoLoader - load subroutines only on demand
-
 =over 4
 
-=item SYNOPSIS
+=item $tar->extract( [@filenames] )
 
-=item DESCRIPTION
+=back
 
 =over 4
 
-=item Subroutine Stubs
+=item $tar->extract_file( $file, [$extract_path] )
 
-=item Using B<AutoLoader>'s AUTOLOAD Subroutine
+=back
 
-=item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
+=over 4
 
-=item Package Lexicals
+=item $tar->list_files( [\@properties] )
 
-=item Not Using AutoLoader
+=back
 
-=item B<AutoLoader> vs. B<SelfLoader>
+=over 4
+
+=item $tar->get_files( [@filenames] )
 
 =back
 
-=item CAVEATS
+=over 4
 
-=item SEE ALSO
+=item $tar->get_content( $file )
 
 =back
 
-=head2 AutoSplit - split a package for autoloading
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item $tar->replace_content( $file, $content )
 
-$keep, $check, $modtime
+=back
 
 =over 4
 
-=item Multiple packages
+=item $tar->rename( $file, $new_name )
 
 =back
 
-=item DIAGNOSTICS
+=over 4
 
-=back
+=item $tar->remove (@filenamelist)
 
-=head2 B - The Perl Compiler
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item $tar->clear
 
-=item DESCRIPTION
+=back
 
-=item OVERVIEW
+=over 4
 
-=item Utility Functions
+=item $tar->write ( [$file, $compressed, $prefix] )
 
-=over 4
+=back
 
-=item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
-objects
+=over 4
 
-sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
-check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
+=item $tar->add_files( @filenamelist )
 
-=item Functions for Examining the Symbol Table
+=back
 
-walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
+=over 4
 
-=item Functions Returning C<B::OP> objects or for walking op trees
+=item $tar->add_data ( $filename, $data, [$opthashref] )
 
-main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
+=back
 
-=item Miscellaneous Utility Functions
+=over 4
 
-ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
-perlstring(STR), class(OBJ), threadsv_names
+=item $tar->error( [$BOOL] )
 
 =back
 
-=item OVERVIEW OF CLASSES
-
 =over 4
 
-=item SV-RELATED CLASSES
+=item $bool = $tar->has_io_string
 
-=item B::SV Methods
+=back
 
-REFCNT, FLAGS, object_2svref
+=over 4
 
-=item B::IV Methods
+=item $bool = $tar->has_perlio
 
-IV, IVX, UVX, int_value, needs64bits, packiv
+=back
 
-=item B::NV Methods
+=over 4
 
-NV, NVX
+=item Class Methods
 
-=item B::RV Methods
+=over 4
 
-RV
+=item Archive::Tar->create_archive($file, $compression, @filelist)
 
-=item B::PV Methods
+=back
 
-PV, RV, PVX
+=back
 
-=item B::PVMG Methods
+=over 4
 
-MAGIC, SvSTASH
+=item Archive::Tar->list_archive ($file, $compressed, [\@properties])
 
-=item B::MAGIC Methods
+=back
 
-MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
+=over 4
 
-=item B::PVLV Methods
+=item Archive::Tar->extract_archive ($file, $gzip)
 
-TARGOFF, TARGLEN, TYPE, TARG
+=back
 
-=item B::BM Methods
+=over 4
 
-USEFUL, PREVIOUS, RARE, TABLE
+=item Archive::Tar->can_handle_compressed_files
 
-=item B::GV Methods
+=back
 
-is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
-LINE, FILE, FILEGV, GvREFCNT, FLAGS
+=over 4
 
-=item B::IO Methods
+=item GLOBAL VARIABLES
 
-LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
-BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
+=over 4
 
-=item B::AV Methods
+=item $Archive::Tar::FOLLOW_SYMLINK
 
-FILL, MAX, OFF, ARRAY, ARRAYelt, AvFLAGS
+=item $Archive::Tar::CHOWN
 
-=item B::CV Methods
+=item $Archive::Tar::CHMOD
 
-STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
-XSUBANY, CvFLAGS, const_sv
+=item $Archive::Tar::DO_NOT_USE_PREFIX
 
-=item B::HV Methods
+=item $Archive::Tar::DEBUG
 
-FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
+=item $Archive::Tar::WARN
 
-=item OP-RELATED CLASSES
+=item $Archive::Tar::error
 
-=item B::OP Methods
+=item $Archive::Tar::HAS_PERLIO
 
-next, sibling, name, ppaddr, desc, targ, type, opt, static, flags, private,
-spare
+=item $Archive::Tar::HAS_IO_STRING
 
-=item B::UNOP METHOD
+=back
 
-first
+=item FAQ
 
-=item B::BINOP METHOD
+What's the minimum perl version required to run Archive::Tar?, Isn't
+Archive::Tar slow?, Isn't Archive::Tar heavier on memory than /bin/tar?,
+Can't you lazy-load data instead?, How much memory will an X kb tar file
+need?, What do you do with unsupported filetypes in an archive?, How do I
+access .tar.Z files?
 
-last
+=item TODO
 
-=item B::LOGOP METHOD
+Check if passed in handles are open for read/write
 
-other
+=item AUTHOR
 
-=item B::LISTOP METHOD
+=item ACKNOWLEDGEMENTS
 
-children
+=item COPYRIGHT
 
-=item B::PMOP Methods
+=back
 
-pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
-pmpermflags, precomp, pmoffset
+=head2 Archive::Tar::File - a subclass for in-memory extracted file from
+Archive::Tar
 
-=item B::SVOP METHOD
+=over 4
 
-sv, gv
+=item SYNOPSIS
 
-=item B::PADOP METHOD
+=item DESCRIPTION
 
-padix
+=over 4
 
-=item B::PVOP METHOD
+=item Accessors
 
-pv
+name, mode, uid, gid, size, mtime, chksum, type, linkname, magic, version,
+uname, gname, devmajor, devminor, prefix, raw
 
-=item B::LOOP Methods
+=back
 
-redoop, nextop, lastop
+=item Methods
 
-=item B::COP Methods
+=over 4
 
-label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
+=item new( file => $path )
 
-=back
+=item new( data => $path, $data, $opt )
 
-=item AUTHOR
+=item new( chunk => $chunk )
 
 =back
 
-=head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
-bytecode
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item full_path
 
-=item DESCRIPTION
+=back
 
-%insn_data, @insn_name, @optype, @specialsv_name
+=over 4
 
-=item AUTHOR
+=item validate
 
 =back
 
-=head2 B::Assembler - Assemble Perl bytecode
-
 =over 4
 
-=item SYNOPSIS
+=item has_content
 
-=item DESCRIPTION
+=back
 
-=item AUTHORS
+=over 4
 
-=back
+=item get_content
 
-=head2 B::Bblock - Walk basic blocks
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item get_content_by_ref
 
-=item DESCRIPTION
+=back
 
 =over 4
 
-=item Functions
+=item replace_content( $content )
 
-B<find_leaders>
+=back
+
+=over 4
+
+=item rename( $new_name )
 
 =back
 
-=item AUTHOR
+=over 4
+
+=item Convenience methods
+
+is_file, is_dir, is_hardlink, is_symlink, is_chardev, is_blockdev, is_fifo,
+is_socket, is_longlink, is_label, is_unknown
 
 =back
 
-=head2 B::Bytecode - Perl compiler's bytecode backend
+=head2 Attribute::Handlers - Simpler definition of attribute handlers
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-=item EXAMPLE
-
-=item OPTIONS
-
-B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
+[0], [1], [2], [3], [4], [5]
 
-=item KNOWN BUGS
+=over 4
 
-=item NOTICE
+=item Typed lexicals
 
-=item AUTHORS
+=item Type-specific attribute handlers
 
-=back
+=item Non-interpretive attribute handlers
 
-=head2 B::C - Perl compiler's C backend
+=item Phase-specific attribute handlers
 
-=over 4
+=item Attributes as C<tie> interfaces
 
-=item SYNOPSIS
+=back
 
-=item DESCRIPTION
+=item EXAMPLES
 
-=item OPTIONS
+=item DIAGNOSTICS
 
-B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
-B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
-B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
-B<-llimit>
+C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
+attributes>, C<Declaration of %s attribute in package %s may clash with
+future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
+C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
+be able to apply END handler>
 
-=item EXAMPLES
+=item AUTHOR
 
 =item BUGS
 
-=item AUTHOR
+=item COPYRIGHT
 
 =back
 
-=head2 B::CC - Perl compiler's optimized C translation backend
+=head2 AutoLoader - load subroutines only on demand
 
 =over 4
 
@@ -10546,35 +11862,49 @@ B<-llimit>
 
 =item DESCRIPTION
 
-=item OPTIONS
+=over 4
 
-B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
-B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
-B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
+=item Subroutine Stubs
 
-=item EXAMPLES
+=item Using B<AutoLoader>'s AUTOLOAD Subroutine
 
-=item BUGS
+=item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
 
-=item DIFFERENCES
+=item Package Lexicals
+
+=item Not Using AutoLoader
+
+=item B<AutoLoader> vs. B<SelfLoader>
+
+=back
+
+=item CAVEATS
+
+=item SEE ALSO
+
+=back
+
+=head2 AutoSplit - split a package for autoloading
 
 =over 4
 
-=item Loops
+=item SYNOPSIS
 
-=item Context of ".."
+=item DESCRIPTION
 
-=item Arithmetic
+$keep, $check, $modtime
 
-=item Deprecated features
+=over 4
+
+=item Multiple packages
 
 =back
 
-=item AUTHOR
+=item DIAGNOSTICS
 
 =back
 
-=head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
+=head2 B - The Perl Compiler
 
 =over 4
 
@@ -10582,143 +11912,154 @@ B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
 
 =item DESCRIPTION
 
-=item EXAMPLE
+=item OVERVIEW
 
-=item OPTIONS
+=item Utility Functions
 
 =over 4
 
-=item Options for Opcode Ordering
+=item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
+objects
 
-B<-basic>, B<-exec>, B<-tree>
+sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
+check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
 
-=item Options for Line-Style
+=item Functions for Examining the Symbol Table
 
-B<-concise>, B<-terse>, B<-linenoise>, B<-debug>, B<-env>
+walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
 
-=item Options for tree-specific formatting
+=item Functions Returning C<B::OP> objects or for walking op trees
 
-B<-compact>, B<-loose>, B<-vt>, B<-ascii>
+main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
 
-=item Options controlling sequence numbering
+=item Miscellaneous Utility Functions
 
-B<-base>I<n>, B<-bigendian>, B<-littleendian>
+ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
+perlstring(STR), class(OBJ), threadsv_names
 
-=item Other options
+=back
 
-B<-main>, B<-nomain>, B<-nobanner>, B<-banner>, B<-banneris> => subref
+=item OVERVIEW OF CLASSES
 
-=item Option Stickiness
+=over 4
 
-=back
+=item SV-RELATED CLASSES
 
-=item ABBREVIATIONS
+=item B::SV Methods
 
-=over 4
+REFCNT, FLAGS, object_2svref
 
-=item OP class abbreviations
+=item B::IV Methods
 
-=item OP flags abbreviations
+IV, IVX, UVX, int_value, needs64bits, packiv
 
-=back
+=item B::NV Methods
 
-=item FORMATTING SPECIFICATIONS
+NV, NVX
 
-=over 4
+=item B::RV Methods
 
-=item Special Patterns
+RV
 
-B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
-B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
-B<~>
+=item B::PV Methods
 
-=item # Variables
+PV, RV, PVX
 
-B<#>I<var>, B<#>I<var>I<N>, B<#>I<Var>, B<#addr>, B<#arg>, B<#class>,
-B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
-B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
-B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
-B<#seq>, B<#seqnum>, B<#opt>, B<#static>, B<#sibaddr>, B<#svaddr>,
-B<#svclass>, B<#svval>, B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
+=item B::PVMG Methods
 
-=back
+MAGIC, SvSTASH
 
-=item Using B::Concise outside of the O framework
+=item B::MAGIC Methods
 
-=over 4
+MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
 
-=item Example: Altering Concise Renderings
+=item B::PVLV Methods
 
-=item set_style()
+TARGOFF, TARGLEN, TYPE, TARG
 
-=item set_style_standard($name)
+=item B::BM Methods
 
-=item add_style()
+USEFUL, PREVIOUS, RARE, TABLE
 
-=item add_callback()
+=item B::GV Methods
 
-=item Running B::Concise::compile()
+is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
+LINE, FILE, FILEGV, GvREFCNT, FLAGS
 
-=item B::Concise::reset_sequence()
+=item B::IO Methods
 
-=item Errors
+LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
+BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
 
-=back
+=item B::AV Methods
 
-=item AUTHOR
+FILL, MAX, ARRAY, ARRAYelt, OFF, AvFLAGS
 
-=back
+=item B::CV Methods
 
-=head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
+STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
+XSUBANY, CvFLAGS, const_sv
 
-=over 4
+=item B::HV Methods
 
-=item SYNOPSIS
+FILL, MAX, KEYS, RITER, NAME, ARRAY, PMROOT
 
-=item DESCRIPTION
+=item OP-RELATED CLASSES
 
-=item AUTHOR
+=item B::OP Methods
 
-=back
+next, sibling, name, ppaddr, desc, targ, type, opt, static, flags, private,
+spare
 
-=head2 B::Deparse - Perl compiler backend to produce perl code
+=item B::UNOP METHOD
 
-=over 4
+first
 
-=item SYNOPSIS
+=item B::BINOP METHOD
 
-=item DESCRIPTION
+last
 
-=item OPTIONS
+=item B::LOGOP METHOD
 
-B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
-B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
+other
 
-=item USING B::Deparse AS A MODULE
+=item B::LISTOP METHOD
 
-=over 4
+children
 
-=item Synopsis
+=item B::PMOP Methods
 
-=item Description
+pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
+pmpermflags, precomp, pmoffset
 
-=item new
+=item B::SVOP METHOD
 
-=item ambient_pragmas
+sv, gv
 
-strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
+=item B::PADOP METHOD
 
-=item coderef2text
+padix
 
-=back
+=item B::PVOP METHOD
 
-=item BUGS
+pv
+
+=item B::LOOP Methods
+
+redoop, nextop, lastop
+
+=item B::COP Methods
+
+label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
+
+=back
 
 =item AUTHOR
 
 =back
 
-=head2 B::Disassembler - Disassemble Perl bytecode
+=head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
+bytecode
 
 =over 4
 
@@ -10726,11 +12067,13 @@ strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
 
 =item DESCRIPTION
 
+%insn_data, @insn_name, @optype, @specialsv_name
+
 =item AUTHOR
 
 =back
 
-=head2 B::Lint - Perl lint
+=head2 B::Assembler - Assemble Perl bytecode
 
 =over 4
 
@@ -10738,23 +12081,11 @@ strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
 
 =item DESCRIPTION
 
-=item OPTIONS AND LINT CHECKS
+=item AUTHORS
 
-B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
-B<dollar-underscore>, B<private-names>, B<undefined-subs>,
-B<regexp-variables>, B<all>, B<none>
+=back
 
-=item NON LINT-CHECK OPTIONS
-
-B<-u Package>
-
-=item BUGS
-
-=item AUTHOR
-
-=back
-
-=head2 B::O, O - Generic interface to Perl Compiler backends
+=head2 B::Bblock - Walk basic blocks
 
 =over 4
 
@@ -10762,17 +12093,19 @@ B<-u Package>
 
 =item DESCRIPTION
 
-=item CONVENTIONS
+=over 4
 
-=item IMPLEMENTATION
+=item Functions
 
-=item BUGS
+B<find_leaders>
+
+=back
 
 =item AUTHOR
 
 =back
 
-=head2 B::Showlex - Show lexical variables used in functions or files
+=head2 B::Bytecode - Perl compiler's bytecode backend
 
 =over 4
 
@@ -10780,23 +12113,21 @@ B<-u Package>
 
 =item DESCRIPTION
 
-=item EXAMPLES
-
-=over 4
+=item EXAMPLE
 
 =item OPTIONS
 
-=back
+B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
 
-=item SEE ALSO
+=item KNOWN BUGS
 
-=item TODO
+=item NOTICE
 
-=item AUTHOR
+=item AUTHORS
 
 =back
 
-=head2 B::Stackobj - Helper module for CC backend
+=head2 B::C - Perl compiler's C backend
 
 =over 4
 
@@ -10804,25 +12135,22 @@ B<-u Package>
 
 =item DESCRIPTION
 
-=item AUTHOR
-
-=back
-
-=head2 B::Stash - show what stashes are loaded
-
-=head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
+=item OPTIONS
 
-=over 4
+B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
+B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
+B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
+B<-llimit>
 
-=item SYNOPSIS
+=item EXAMPLES
 
-=item DESCRIPTION
+=item BUGS
 
 =item AUTHOR
 
 =back
 
-=head2 B::Xref - Generates cross reference reports for Perl programs
+=head2 B::CC - Perl compiler's optimized C translation backend
 
 =over 4
 
@@ -10832,27 +12160,25 @@ B<-u Package>
 
 =item OPTIONS
 
-C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
-
-=item BUGS
+B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
+B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
+B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
 
-=item AUTHOR
+=item EXAMPLES
 
-=back
+=item BUGS
 
-=head2 Bblock, B::Bblock - Walk basic blocks
+=item DIFFERENCES
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item Loops
 
-=over 4
+=item Context of ".."
 
-=item Functions
+=item Arithmetic
 
-B<find_leaders>
+=item Deprecated features
 
 =back
 
@@ -10860,7 +12186,7 @@ B<find_leaders>
 
 =back
 
-=head2 Benchmark - benchmark running times of Perl code
+=head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
 
 =over 4
 
@@ -10868,343 +12194,354 @@ B<find_leaders>
 
 =item DESCRIPTION
 
+=item EXAMPLE
+
+=item OPTIONS
+
 =over 4
 
-=item Methods
+=item Options for Opcode Ordering
 
-new, debug, iters
+B<-basic>, B<-exec>, B<-tree>
 
-=item Standard Exports
+=item Options for Line-Style
 
-timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
-timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
-TIMEDIFF, [ STYLE, [ FORMAT ] ] )
+B<-concise>, B<-terse>, B<-linenoise>, B<-debug>, B<-env>
 
-=item Optional Exports
+=item Options for tree-specific formatting
 
-clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
-STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
-disablecache ( ), enablecache ( ), timesum ( T1, T2 )
+B<-compact>, B<-loose>, B<-vt>, B<-ascii>
 
-=item :hireswallclock
+=item Options controlling sequence numbering
 
-=back
+B<-base>I<n>, B<-bigendian>, B<-littleendian>
 
-=item NOTES
+=item Other options
 
-=item EXAMPLES
+B<-main>, B<-nomain>, B<-nobanner>, B<-banner>, B<-banneris> => subref
 
-=item INHERITANCE
+=item Option Stickiness
 
-=item CAVEATS
+=back
 
-=item SEE ALSO
+=item ABBREVIATIONS
 
-=item AUTHORS
+=over 4
 
-=item MODIFICATION HISTORY
+=item OP class abbreviations
+
+=item OP flags abbreviations
 
 =back
 
-=head2 ByteLoader - load byte compiled perl code
+=item FORMATTING SPECIFICATIONS
 
 =over 4
 
-=item SYNOPSIS
+=item Special Patterns
 
-=item DESCRIPTION
+B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
+B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
+B<~>
 
-=item AUTHOR
+=item # Variables
 
-=item SEE ALSO
+B<#>I<var>, B<#>I<var>I<N>, B<#>I<Var>, B<#addr>, B<#arg>, B<#class>,
+B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
+B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
+B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
+B<#seq>, B<#seqnum>, B<#opt>, B<#static>, B<#sibaddr>, B<#svaddr>,
+B<#svclass>, B<#svval>, B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
 
 =back
 
-=head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
+=item One-Liner Command tips
+
+perl -MO=Concise,bar foo.pl, perl -MDigest::MD5=md5 -MO=Concise,md5 -e1,
+perl -MPOSIX -MO=Concise,_POSIX_ARG_MAX -e1, perl -MPOSIX -MO=Concise,a -e
+'print _POSIX_SAVED_IDS', perl -MPOSIX -MO=Concise,a -e 'sub
+a{_POSIX_SAVED_IDS}'
+
+=item Using B::Concise outside of the O framework
 
 =over 4
 
-=item SYNOPSIS
+=item Example: Altering Concise Renderings
 
-=item DESCRIPTION
+=item set_style()
 
-=item EXAMPLE
+=item set_style_standard($name)
 
-=item OPTIONS
+=item add_style()
 
-B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
+=item add_callback()
 
-=item KNOWN BUGS
+=item Running B::Concise::compile()
 
-=item NOTICE
+=item B::Concise::reset_sequence()
 
-=item AUTHORS
+=item Errors
 
 =back
 
-=head2 CGI - Simple Common Gateway Interface Class
+=item AUTHOR
+
+=back
+
+=head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
-
 =item DESCRIPTION
 
-=over 4
+=item AUTHOR
 
-=item PROGRAMMING STYLE
+=back
 
-=item CALLING CGI.PM ROUTINES
+=head2 B::Deparse - Perl compiler backend to produce perl code
 
-=item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
+=over 4
 
-=item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
+=item SYNOPSIS
 
-=item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
+=item DESCRIPTION
 
-=item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
+=item OPTIONS
 
-=item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
+B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
+B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
 
-=item SETTING THE VALUE(S) OF A NAMED PARAMETER:
+=item USING B::Deparse AS A MODULE
 
-=item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
+=over 4
 
-=item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
+=item Synopsis
 
-=item DELETING A PARAMETER COMPLETELY:
+=item Description
 
-=item DELETING ALL PARAMETERS:
+=item new
 
-=item DIRECT ACCESS TO THE PARAMETER LIST:
+=item ambient_pragmas
 
-=item FETCHING THE PARAMETER LIST AS A HASH:
+strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
 
-=item SAVING THE STATE OF THE SCRIPT TO A FILE:
+=item coderef2text
 
-=item RETRIEVING CGI ERRORS
+=back
 
-=item USING THE FUNCTION-ORIENTED INTERFACE
+=item BUGS
 
-B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
-B<:standard>, B<:all>
+=item AUTHOR
 
-=item PRAGMAS
+=back
 
--any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
--newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
--private_tempfiles
+=head2 B::Disassembler - Disassemble Perl bytecode
 
-=item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
+=over 4
 
-1. start_table() (generates a <table> tag), 2. end_table() (generates a
-</table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
-a </ul> tag)
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item AUTHOR
 
 =back
 
-=item GENERATING DYNAMIC DOCUMENTS
+=head2 B::Lint - Perl lint
 
 =over 4
 
-=item CREATING A STANDARD HTTP HEADER:
+=item SYNOPSIS
 
-=item GENERATING A REDIRECTION HEADER
+=item DESCRIPTION
 
-=item CREATING THE HTML DOCUMENT HEADER
+=item OPTIONS AND LINT CHECKS
 
-B<Parameters:>, 4, 5, 6..
+B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
+B<dollar-underscore>, B<private-names>, B<undefined-subs>,
+B<regexp-variables>, B<all>, B<none>
 
-=item ENDING THE HTML DOCUMENT:
+=item NON LINT-CHECK OPTIONS
 
-=item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
+B<-u Package>
 
-=item OBTAINING THE SCRIPT'S URL
+=item EXTENDING LINT
 
-B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
-(B<-query_string>), B<-base>
+=item BUGS
 
-=item MIXING POST AND URL PARAMETERS
+=item AUTHOR
 
 =back
 
-=item CREATING STANDARD HTML ELEMENTS:
+=head2 B::O, O - Generic interface to Perl Compiler backends
 
 =over 4
 
-=item PROVIDING ARGUMENTS TO HTML SHORTCUTS
-
-=item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
+=item SYNOPSIS
 
-=item HTML SHORTCUTS AND LIST INTERPOLATION
+=item DESCRIPTION
 
-=item NON-STANDARD HTML SHORTCUTS
+=item CONVENTIONS
 
-=item AUTOESCAPING HTML
+=item IMPLEMENTATION
 
-$escaped_string = escapeHTML("unescaped string");, $charset =
-charset([$charset]);, $flag = autoEscape([$flag]);
+=item BUGS
 
-=item PRETTY-PRINTING HTML
+=item AUTHOR
 
 =back
 
-=item CREATING FILL-OUT FORMS:
+=head2 B::Showlex - Show lexical variables used in functions or files
 
 =over 4
 
-=item CREATING AN ISINDEX TAG
+=item SYNOPSIS
 
-=item STARTING AND ENDING A FORM
+=item DESCRIPTION
 
-B<application/x-www-form-urlencoded>, B<multipart/form-data>
+=item EXAMPLES
 
-=item CREATING A TEXT FIELD
+=over 4
 
-B<Parameters>
+=item OPTIONS
 
-=item CREATING A BIG TEXT FIELD
+=back
 
-=item CREATING A PASSWORD FIELD
+=item SEE ALSO
 
-=item CREATING A FILE UPLOAD FIELD
+=item TODO
 
-B<Parameters>
+=item AUTHOR
 
-=item CREATING A POPUP MENU
+=back
 
-=item CREATING AN OPTION GROUP
+=head2 B::Stackobj - Helper module for CC backend
 
-=item CREATING A SCROLLING LIST
+=over 4
 
-B<Parameters:>
+=item SYNOPSIS
 
-=item CREATING A GROUP OF RELATED CHECKBOXES
+=item DESCRIPTION
 
-B<Parameters:>
+=item AUTHOR
 
-=item CREATING A STANDALONE CHECKBOX
+=back
 
-B<Parameters:>
+=head2 B::Stash - show what stashes are loaded
 
-=item CREATING A RADIO BUTTON GROUP
+=head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
 
-B<Parameters:>
+=over 4
 
-=item CREATING A SUBMIT BUTTON 
+=item SYNOPSIS
 
-B<Parameters:>
+=item DESCRIPTION
 
-=item CREATING A RESET BUTTON
+=item AUTHOR
 
-=item CREATING A DEFAULT BUTTON
+=back
 
-=item CREATING A HIDDEN FIELD
+=head2 B::Xref - Generates cross reference reports for Perl programs
 
-B<Parameters:>
+=over 4
 
-=item CREATING A CLICKABLE IMAGE BUTTON
+=item SYNOPSIS
 
-B<Parameters:>, 3. The third option (-align, optional) is an alignment
-type, and may be TOP, BOTTOM or MIDDLE
+=item DESCRIPTION
 
-=item CREATING A JAVASCRIPT ACTION BUTTON
+=item OPTIONS
 
-=back
+C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
 
-=item HTTP COOKIES
+=item BUGS
 
-1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
-B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
+=item AUTHOR
 
-=item WORKING WITH FRAMES
+=back
 
-1. Create a <Frameset> document, 2. Specify the destination for the
-document in the HTTP header, 3. Specify the destination for the document in
-the <form> tag
+=head2 Bblock, B::Bblock - Walk basic blocks
 
-=item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
+=over 4
 
-=item DEBUGGING
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =over 4
 
-=item DUMPING OUT ALL THE NAME/VALUE PAIRS
+=item Functions
+
+B<find_leaders>
 
 =back
 
-=item FETCHING ENVIRONMENT VARIABLES
+=item AUTHOR
 
-B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
-B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
-name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
-()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
-B<virtual_port ()>, B<server_software ()>, B<remote_user ()>, B<user_name
-()>, B<request_method()>, B<content_type()>, B<http()>, B<https()>
+=back
 
-=item USING NPH SCRIPTS
+=head2 Benchmark - benchmark running times of Perl code
 
-In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
-parameters
+=over 4
 
-=item Server Push
+=item SYNOPSIS
 
-multipart_init(), multipart_start(), multipart_end(), multipart_final()
+=item DESCRIPTION
 
-=item Avoiding Denial of Service Attacks
+=over 4
 
-B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
-basis>, B<2. Globally for all scripts>
+=item Methods
 
-=item COMPATIBILITY WITH CGI-LIB.PL
+new, debug, iters
 
-=item AUTHOR INFORMATION
+=item Standard Exports
 
-=item CREDITS
+timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
+timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
+TIMEDIFF, [ STYLE, [ FORMAT ] ] )
 
-Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
-(james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
-(mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
-(jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
-(applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
-(tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
-(tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
-MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
-(kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
-Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
-MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
-...and many many more..
+=item Optional Exports
 
-=item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
+clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
+STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
+disablecache ( ), enablecache ( ), timesum ( T1, T2 )
 
-=item BUGS
+=item :hireswallclock
+
+=back
+
+=item NOTES
+
+=item EXAMPLES
+
+=item INHERITANCE
+
+=item CAVEATS
 
 =item SEE ALSO
 
+=item AUTHORS
+
+=item MODIFICATION HISTORY
+
 =back
 
-=head2 CGI::Apache - Backward compatibility module for CGI.pm
+=head2 ByteLoader - load byte compiled perl code
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
-
 =item DESCRIPTION
 
-=item AUTHOR INFORMATION
-
-=item BUGS
+=item AUTHOR
 
 =item SEE ALSO
 
 =back
 
-=head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
-other) error log
+=head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
 
 =over 4
 
@@ -11212,297 +12549,296 @@ other) error log
 
 =item DESCRIPTION
 
-=item REDIRECTING ERROR MESSAGES
-
-=item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
-
-=over 4
+=item EXAMPLE
 
-=item Changing the default message
+=item OPTIONS
 
-=back
+B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
 
-=item MAKING WARNINGS APPEAR AS HTML COMMENTS
+=item KNOWN BUGS
 
-=item OVERRIDING THE NAME OF THE PROGRAM
+=item NOTICE
 
 =item AUTHORS
 
-=item SEE ALSO
-
 =back
 
-=head2 CGI::Cookie - Interface to Netscape Cookies
+=head2 CGI - Simple Common Gateway Interface Class
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
-
-=item USING CGI::Cookie
+=item ABSTRACT
 
-B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
+=item DESCRIPTION
 
 =over 4
 
-=item Creating New Cookies
-
-=item Sending the Cookie to the Browser
+=item PROGRAMMING STYLE
 
-=item Recovering Previous Cookies
+=item CALLING CGI.PM ROUTINES
 
-=item Manipulating Cookies
+=item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
 
-B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
+=item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
 
-=back
+=item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
 
-=item AUTHOR INFORMATION
+=item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
 
-=item BUGS
+=item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
 
-=item SEE ALSO
+=item SETTING THE VALUE(S) OF A NAMED PARAMETER:
 
-=back
+=item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
 
-=head2 CGI::Fast - CGI Interface for Fast CGI
+=item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
 
-=over 4
+=item DELETING A PARAMETER COMPLETELY:
 
-=item SYNOPSIS
+=item DELETING ALL PARAMETERS:
 
-=item DESCRIPTION
+=item HANDLING NON-URLENCODED ARGUMENTS
 
-=item OTHER PIECES OF THE PUZZLE
+=item DIRECT ACCESS TO THE PARAMETER LIST:
 
-=item WRITING FASTCGI PERL SCRIPTS
+=item FETCHING THE PARAMETER LIST AS A HASH:
 
-=item INSTALLING FASTCGI SCRIPTS
+=item SAVING THE STATE OF THE SCRIPT TO A FILE:
 
-=item USING FASTCGI SCRIPTS AS CGI SCRIPTS
+=item RETRIEVING CGI ERRORS
 
-=item EXTERNAL FASTCGI SERVER INVOCATION
+=item USING THE FUNCTION-ORIENTED INTERFACE
 
-FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
+B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
+B<:standard>, B<:all>
 
-=item CAVEATS
+=item PRAGMAS
 
-=item AUTHOR INFORMATION
+-any, -compile, -nosticky, -tabindex, -no_undef_params, -no_xhtml, -nph,
+-newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
+-private_tempfiles
 
-=item BUGS
+=item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
 
-=item SEE ALSO
+1. start_table() (generates a <table> tag), 2. end_table() (generates a
+</table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
+a </ul> tag)
 
 =back
 
-=head2 CGI::Pretty - module to produce nicely formatted HTML code
+=item GENERATING DYNAMIC DOCUMENTS
 
 =over 4
 
-=item SYNOPSIS
+=item CREATING A STANDARD HTTP HEADER:
 
-=item DESCRIPTION
+=item GENERATING A REDIRECTION HEADER
 
-=over 4
+=item CREATING THE HTML DOCUMENT HEADER
 
-=item Tags that won't be formatted
+B<Parameters:>, 4, 5, 6..
 
-=item Customizing the Indenting
+=item ENDING THE HTML DOCUMENT:
 
-=back
+=item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
 
-=item BUGS
+=item OBTAINING THE SCRIPT'S URL
 
-=item AUTHOR
+B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
+(B<-query_string>), B<-base>, B<-rewrite>
 
-=item SEE ALSO
+=item MIXING POST AND URL PARAMETERS
 
 =back
 
-=head2 CGI::Push - Simple Interface to Server Push
+=item CREATING STANDARD HTML ELEMENTS:
 
 =over 4
 
-=item SYNOPSIS
+=item PROVIDING ARGUMENTS TO HTML SHORTCUTS
 
-=item DESCRIPTION
+=item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
 
-=item USING CGI::Push
+=item HTML SHORTCUTS AND LIST INTERPOLATION
 
--next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
+=item NON-STANDARD HTML SHORTCUTS
 
-=over 4
+=item AUTOESCAPING HTML
 
-=item Heterogeneous Pages
+$escaped_string = escapeHTML("unescaped string");, $charset =
+charset([$charset]);, $flag = autoEscape([$flag]);
 
-=item Changing the Page Delay on the Fly
+=item PRETTY-PRINTING HTML
 
 =back
 
-=item INSTALLING CGI::Push SCRIPTS
+=item CREATING FILL-OUT FORMS:
 
-=item AUTHOR INFORMATION
+=over 4
 
-=item BUGS
+=item CREATING AN ISINDEX TAG
 
-=item SEE ALSO
+=item STARTING AND ENDING A FORM
 
-=back
+B<application/x-www-form-urlencoded>, B<multipart/form-data>
 
-=head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
+=item FORM ELEMENTS
 
-=over 4
+B<-name>, B<-value>, B<-values>, B<-tabindex>, B<-id>, B<-override>,
+B<-onChange>, B<-onFocus>, B<-onBlur>, B<-onMouseOver>, B<-onMouseOut>,
+B<-onSelect>
 
-=item SYNOPSIS
+=item CREATING A TEXT FIELD
 
-=item ABSTRACT
+B<Parameters>
 
-=item DESCRIPTION
+=item CREATING A BIG TEXT FIELD
 
-=item AUTHOR INFORMATION
+=item CREATING A PASSWORD FIELD
 
-=item BUGS
+=item CREATING A FILE UPLOAD FIELD
 
-=item SEE ALSO
+B<Parameters>
 
-=back
+=item CREATING A POPUP MENU
 
-=head2 CGI::Util - Internal utilities used by CGI module
+=item CREATING AN OPTION GROUP
 
-=over 4
+=item CREATING A SCROLLING LIST
 
-=item SYNOPSIS
+B<Parameters:>
 
-=item DESCRIPTION
+=item CREATING A GROUP OF RELATED CHECKBOXES
 
-=item AUTHOR INFORMATION
+B<Parameters:>
 
-=item SEE ALSO
+=item CREATING A STANDALONE CHECKBOX
 
-=back
+B<Parameters:>
 
-=head2 CPAN - query, download and build perl modules from CPAN sites
+=item CREATING A RADIO BUTTON GROUP
 
-=over 4
+B<Parameters:>
 
-=item SYNOPSIS
+=item CREATING A SUBMIT BUTTON 
 
-=item STATUS
+B<Parameters:>
 
-=item DESCRIPTION
+=item CREATING A RESET BUTTON
 
-=over 4
+=item CREATING A DEFAULT BUTTON
 
-=item Interactive Mode
+=item CREATING A HIDDEN FIELD
 
-Searching for authors, bundles, distribution files and modules, make, test,
-install, clean modules or distributions, get, readme, look module or
-distribution, ls author, Signals
+B<Parameters:>
 
-=item CPAN::Shell
+=item CREATING A CLICKABLE IMAGE BUTTON
 
-=item autobundle
+B<Parameters:>, 3. The third option (-align, optional) is an alignment
+type, and may be TOP, BOTTOM or MIDDLE
 
-=item recompile
+=item CREATING A JAVASCRIPT ACTION BUTTON
 
-=item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
+=back
 
-=item Programmer's interface
+=item HTTP COOKIES
 
-expand($type,@things), expandany(@things), Programming Examples
+1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
+B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
 
-=item Methods in the other Classes
+=item WORKING WITH FRAMES
 
-CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
-CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
-CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
-CPAN::Bundle::clean(), CPAN::Bundle::contains(),
-CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
-CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
-CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
-CPAN::Bundle::readme(), CPAN::Bundle::test(),
-CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
-CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
-CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
-CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
-CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
-CPAN::Distribution::look(), CPAN::Distribution::make(),
-CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
-CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
-CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
-CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
-CPAN::Module::clean(), CPAN::Module::cpan_file(),
-CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
-CPAN::Module::description(), CPAN::Module::force($method,@args),
-CPAN::Module::get(), CPAN::Module::inst_file(),
-CPAN::Module::inst_version(), CPAN::Module::install(),
-CPAN::Module::look(), CPAN::Module::make(),
-CPAN::Module::manpage_headline(), CPAN::Module::readme(),
-CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
+1. Create a <Frameset> document, 2. Specify the destination for the
+document in the HTTP header, 3. Specify the destination for the document in
+the <form> tag
 
-=item Cache Manager
+=item SUPPORT FOR JAVASCRIPT
 
-=item Bundles
+B<onLoad>, B<onUnload>, B<onSubmit>, B<onClick>, B<onChange>, B<onFocus>,
+B<onBlur>, B<onSelect>, B<onMouseOver>, B<onMouseOut>
 
-=item Prerequisites
+=item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
 
-=item Finding packages and VERSION
+=item DEBUGGING
 
-=item Debugging
+=over 4
 
-=item Floppy, Zip, Offline Mode
+=item DUMPING OUT ALL THE NAME/VALUE PAIRS
 
 =back
 
-=item CONFIGURATION
+=item FETCHING ENVIRONMENT VARIABLES
 
-C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
-E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
-optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
-[unshift|push|splice] E<lt>listE<gt>>
+B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
+B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
+name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
+()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
+B<virtual_port ()>, B<server_software ()>, B<remote_user ()>, B<user_name
+()>, B<request_method()>, B<content_type()>, B<http()>, B<https()>
 
-=over 4
+=item USING NPH SCRIPTS
 
-=item Note on urllist parameter's format
+In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
+parameters
 
-=item urllist parameter has CD-ROM support
+=item Server Push
 
-=back
+multipart_init(), multipart_start(), multipart_end(), multipart_final()
 
-=item SECURITY
+=item Avoiding Denial of Service Attacks
 
-=item EXPORT
+B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
+basis>, B<2. Globally for all scripts>
 
-=item POPULATE AN INSTALLATION WITH LOTS OF MODULES
+=item COMPATIBILITY WITH CGI-LIB.PL
 
-=item WORKING WITH CPAN.pm BEHIND FIREWALLS
+=item AUTHOR INFORMATION
 
-=over 4
+=item CREDITS
 
-=item Three basic types of firewalls
+Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
+(james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
+(mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
+(jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
+(applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
+(tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
+(tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
+MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
+(kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
+Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
+MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
+...and many many more..
 
-http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
+=item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
 
-=item Configuring lynx or ncftp for going through a firewall
+=item BUGS
+
+=item SEE ALSO
 
 =back
 
-=item FAQ
+=head2 CGI::Apache - Backward compatibility module for CGI.pm
+
+=over 4
 
-1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
+=item SYNOPSIS
 
-=item BUGS
+=item ABSTRACT
 
-=item AUTHOR
+=item DESCRIPTION
 
-=item TRANSLATIONS
+=item AUTHOR INFORMATION
+
+=item BUGS
 
 =item SEE ALSO
 
 =back
 
-=head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
+=head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
+other) error log
 
 =over 4
 
@@ -11510,22 +12846,27 @@ http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
 
 =item DESCRIPTION
 
-=back
+=item REDIRECTING ERROR MESSAGES
 
-=head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
-module
+=item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
 
 =over 4
 
-=item SYNOPSIS
+=item Changing the default message
 
-=item DESCRIPTION
+=back
 
-=item  SEE ALSO
+=item MAKING WARNINGS APPEAR AS HTML COMMENTS
+
+=item OVERRIDING THE NAME OF THE PROGRAM
+
+=item AUTHORS
+
+=item SEE ALSO
 
 =back
 
-=head2 Carp, carp    - warn of errors (from perspective of caller)
+=head2 CGI::Cookie - Interface to Netscape Cookies
 
 =over 4
 
@@ -11533,65 +12874,63 @@ module
 
 =item DESCRIPTION
 
-=over 4
+=item USING CGI::Cookie
 
-=item Forcing a Stack Trace
+B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
 
-=back
+=over 4
 
-=back
+=item Creating New Cookies
 
-=over 4
+=item Sending the Cookie to the Browser
 
-=item GLOBAL VARIABLES
+=item Recovering Previous Cookies
 
-=over 4
+=item Manipulating Cookies
 
-=item $Carp::CarpLevel
+B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
 
-=item $Carp::MaxEvalLen
+=back
 
-=item $Carp::MaxArgLen
+=item AUTHOR INFORMATION
 
-=item $Carp::MaxArgNums
+=item BUGS
 
-=item $Carp::Verbose
+=item SEE ALSO
 
 =back
 
-=back
+=head2 CGI::Fast - CGI Interface for Fast CGI
 
 =over 4
 
-=item BUGS
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=head2 Carp::Heavy - heavy machinery, no user serviceable parts inside
+=item OTHER PIECES OF THE PUZZLE
 
-=head2 Class::ISA -- report the search path for a class's ISA tree
+=item WRITING FASTCGI PERL SCRIPTS
 
-=over 4
+=item INSTALLING FASTCGI SCRIPTS
 
-=item SYNOPSIS
+=item USING FASTCGI SCRIPTS AS CGI SCRIPTS
 
-=item DESCRIPTION
+=item EXTERNAL FASTCGI SERVER INVOCATION
 
-=item FUNCTIONS
+FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
 
-the function Class::ISA::super_path($CLASS), the function
-Class::ISA::self_and_super_path($CLASS), the function
-Class::ISA::self_and_super_versions($CLASS)
+=item CAVEATS
 
-=item CAUTIONARY NOTES
+=item AUTHOR INFORMATION
 
-=item COPYRIGHT
+=item BUGS
 
-=item AUTHOR
+=item SEE ALSO
 
 =back
 
-=head2 Class::Struct - declare struct-like datatypes as Perl classes
+=head2 CGI::Pretty - module to produce nicely formatted HTML code
 
 =over 4
 
@@ -11601,28 +12940,2627 @@ Class::ISA::self_and_super_versions($CLASS)
 
 =over 4
 
-=item The C<struct()> function
+=item Tags that won't be formatted
+
+=item Customizing the Indenting
+
+=back
+
+=item BUGS
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=back
+
+=head2 CGI::Push - Simple Interface to Server Push
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item USING CGI::Push
+
+-next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
+
+=over 4
+
+=item Heterogeneous Pages
+
+=item Changing the Page Delay on the Fly
+
+=back
+
+=item INSTALLING CGI::Push SCRIPTS
+
+=item AUTHOR INFORMATION
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
+=head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
+
+=over 4
+
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
+
+=item AUTHOR INFORMATION
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
+=head2 CGI::Util - Internal utilities used by CGI module
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item AUTHOR INFORMATION
+
+=item SEE ALSO
+
+=back
+
+=head2 CPAN - query, download and build perl modules from CPAN sites
+
+=over 4
+
+=item SYNOPSIS
+
+=item STATUS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Interactive Mode
+
+Searching for authors, bundles, distribution files and modules, make, test,
+install, clean modules or distributions, get, readme, perldoc, look module
+or distribution, ls author, ls globbing_expresion, Signals
+
+=item CPAN::Shell
+
+=item autobundle
+
+=item recompile
+
+=item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
+
+=item Programmer's interface
+
+expand($type,@things), expandany(@things), Programming Examples
+
+=item Methods in the other Classes
+
+CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
+CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
+CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
+CPAN::Bundle::clean(), CPAN::Bundle::contains(),
+CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
+CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
+CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
+CPAN::Bundle::readme(), CPAN::Bundle::test(),
+CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
+CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
+CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
+CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
+CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
+CPAN::Distribution::look(), CPAN::Distribution::make(),
+CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
+CPAN::Distribution::perldoc(), CPAN::Distribution::test(),
+CPAN::Distribution::uptodate(), CPAN::Index::force_reload(),
+CPAN::Index::reload(), CPAN::InfoObj::dump(), CPAN::Module::as_glimpse(),
+CPAN::Module::as_string(), CPAN::Module::clean(),
+CPAN::Module::cpan_file(), CPAN::Module::cpan_version(),
+CPAN::Module::cvs_import(), CPAN::Module::description(),
+CPAN::Module::force($method,@args), CPAN::Module::get(),
+CPAN::Module::inst_file(), CPAN::Module::inst_version(),
+CPAN::Module::install(), CPAN::Module::look(), CPAN::Module::make(),
+CPAN::Module::manpage_headline(), CPAN::Module::readme(),
+CPAN::Module::perldoc(), CPAN::Module::test(), CPAN::Module::uptodate(),
+CPAN::Module::userid()
+
+=item Cache Manager
+
+=item Bundles
+
+=item Prerequisites
+
+=item Finding packages and VERSION
+
+=item Debugging
+
+=item Floppy, Zip, Offline Mode
+
+=back
+
+=item CONFIGURATION
+
+C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
+E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
+optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
+[unshift|push|splice] E<lt>listE<gt>>
+
+=over 4
+
+=item Note on urllist parameter's format
+
+=item urllist parameter has CD-ROM support
+
+=back
+
+=item SECURITY
+
+=over 4
+
+=item Cryptographically signed modules
+
+=back
+
+=item EXPORT
+
+=item POPULATE AN INSTALLATION WITH LOTS OF MODULES
+
+=item WORKING WITH CPAN.pm BEHIND FIREWALLS
+
+=over 4
+
+=item Three basic types of firewalls
+
+http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
+
+=item Configuring lynx or ncftp for going through a firewall
+
+=back
+
+=item FAQ
+
+1), 2), 3), 4), 5), 6), 7), 8), 9), 10), 11)
+
+=item BUGS
+
+=item AUTHOR
+
+=item TRANSLATIONS
+
+=item SEE ALSO
+
+=back
+
+=head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=head2 CPAN::Version - utility functions to compare CPAN versions
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
+module
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item  SEE ALSO
+
+=back
+
+=head2 Carp, carp    - warn of errors (from perspective of caller)
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Forcing a Stack Trace
+
+=back
+
+=item GLOBAL VARIABLES
+
+=over 4
+
+=item $Carp::CarpLevel
+
+=item $Carp::MaxEvalLen
+
+=item $Carp::MaxArgLen
+
+=item $Carp::MaxArgNums
+
+=item $Carp::Verbose
+
+=back
+
+=item BUGS
+
+=back
+
+=head2 Carp::Heavy - heavy machinery, no user serviceable parts inside
+
+=head2 Class::ISA -- report the search path for a class's ISA tree
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item FUNCTIONS
+
+the function Class::ISA::super_path($CLASS), the function
+Class::ISA::self_and_super_path($CLASS), the function
+Class::ISA::self_and_super_versions($CLASS)
+
+=item CAUTIONARY NOTES
+
+=item COPYRIGHT
+
+=item AUTHOR
+
+=back
+
+=head2 Class::Struct - declare struct-like datatypes as Perl classes
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item The C<struct()> function
 
 =item Class Creation at Compile Time
 
-=item Element Types and Accessor Methods
+=item Element Types and Accessor Methods
+
+Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
+C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
+
+=item Initializing with C<new>
+
+=back
+
+=item EXAMPLES
+
+Example 1, Example 2, Example 3
+
+=item Author and Modification History
+
+=back
+
+=head2 Compress::Zlib - Interface to zlib compression library
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item GZIP INTERFACE
+
+B<$gz = gzopen($filename, $mode)>, B<$gz = gzopen($filehandle, $mode)>,
+B<$bytesread = $gz-E<gt>gzread($buffer [, $size]) ;>, B<$bytesread =
+$gz-E<gt>gzreadline($line) ;>, B<$byteswritten = $gz-E<gt>gzwrite($buffer)
+;>, B<$status = $gz-E<gt>gzflush($flush_type) ;>, B<$offset =
+$gz-E<gt>gztell() ;>, B<$status = $gz-E<gt>gzseek($offset, $whence) ;>,
+B<$gz-E<gt>gzclose>, B<$gz-E<gt>gzsetparams($level, $strategy>, B<$level>,
+B<$strategy>, B<$gz-E<gt>gzerror>, B<$gzerrno>
+
+=over 4
+
+=item Examples
+
+=item Compress::Zlib::memGzip
+
+=item Compress::Zlib::memGunzip
+
+=back
+
+=item COMPRESS/UNCOMPRESS
+
+B<$dest = compress($source [, $level] ) ;>, B<$dest = uncompress($source)
+;>
+
+=item CHECKSUM FUNCTIONS
+
+=item Compress::Zlib::Deflate
+
+=over 4
+
+=item B<($d, $status) = new Compress::Zlib::Deflate( [OPT] ) >
+
+B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
+B<-Dictionary>, B<-Bufsize>, B<-AppendOutput>, B<-CRC32>, B<-ADLER32>
+
+=item B<$status = $d-E<gt>deflate($input, $output)>
+
+=item B<$status = $d-E<gt>flush($output [, $flush_type]) >
+
+=item B<$status = $d-E<gt>deflateParams([OPT])>
+
+B<-Level>, B<-Strategy>, B<-BufSize>
+
+=item B<$status = $d-E<gt>deflateTune($good_length, $max_lazy,
+$nice_length, $max_chain)>
+
+=item B<$d-E<gt>dict_adler()>
+
+=item B<$d-E<gt>crc32()>
+
+=item B<$d-E<gt>adler32()>
+
+=item B<$d-E<gt>msg()>
+
+=item B<$d-E<gt>total_in()>
+
+=item B<$d-E<gt>total_out()>
+
+=item B<$d-E<gt>get_Strategy()>
+
+=item B<$d-E<gt>get_Level()>
+
+=item B<$d-E<gt>get_BufSize()>
+
+=item Example
+
+=back
+
+=item Compress::Zlib::Inflate
+
+=over 4
+
+=item B< ($i, $status) = new Compress::Zlib::Inflate( [OPT] ) >
+
+B<-WindowBits>, B<-Bufsize>, B<-Dictionary>, B<-AppendOutput>, B<-CRC32>,
+B<-ADLER32>, B<-ConsumeInput>
+
+=item B< $status = $i-E<gt>inflate($input, $output) >
+
+=item B<$status = $i-E<gt>inflateSync($input)>
+
+=item B<$i-E<gt>dict_adler()>
+
+=item B<$i-E<gt>crc32()>
+
+=item B<$i-E<gt>adler32()>
+
+=item B<$i-E<gt>msg()>
+
+=item B<$i-E<gt>total_in()>
+
+=item B<$i-E<gt>total_out()>
+
+=item B<$d-E<gt>get_BufSize()>
+
+=item Example
+
+=back
+
+=item Compress::Zlib 1.x Deflate Interface
+
+=over 4
+
+=item B<($d, $status) = deflateInit( [OPT] )>
+
+B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
+B<-Dictionary>, B<-Bufsize>
+
+=item B<($out, $status) = $d-E<gt>deflate($buffer)>
+
+=item B<($out, $status) = $d-E<gt>flush([flush_type])>
+
+=item B<$status = $d-E<gt>deflateParams([OPT])>
+
+B<-Level>, B<-Strategy>
+
+=item B<$d-E<gt>dict_adler()>
+
+=item B<$d-E<gt>msg()>
+
+=item B<$d-E<gt>total_in()>
+
+=item B<$d-E<gt>total_out()>
+
+=item Example
+
+=back
+
+=item Compress::Zlib 1.x Inflate Interface
+
+=over 4
+
+=item B<($i, $status) = inflateInit()>
+
+B<-WindowBits>, B<-Bufsize>, B<-Dictionary>
+
+=item B<($out, $status) = $i-E<gt>inflate($buffer)>
+
+=item B<$status = $i-E<gt>inflateSync($buffer)>
+
+=item B<$i-E<gt>dict_adler()>
+
+=item B<$i-E<gt>msg()>
+
+=item B<$i-E<gt>total_in()>
+
+=item B<$i-E<gt>total_out()>
+
+=item Example
+
+=back
+
+=item ACCESSING ZIP FILES
+
+=item CONSTANTS
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::File::GlobMapper, File::GlobMapper - Extend File
+Glob to Allow Input and Output Files
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+This code is a work in progress, There are known bugs, The interface
+defined here is tentative, There are portability issues, Do not use in
+production code, Consider yourself warned!
+
+=over 4
+
+=item Behind The Scenes
+
+=item Limitations
+
+=item Input File Glob
+
+B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
+
+=item Output File Glob
+
+"*", #1
+
+=item Returned Data
+
+=back
+
+=item EXAMPLES
+
+=over 4
+
+=item A Rename script
+
+=item A few example globmaps
+
+=back
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::IO::Compress::Deflate, IO::Compress::Deflate    -
+Perl interface to write RFC 1950 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
+=over 4
+
+=item deflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
+
+=item deflate \%hash [, OPTS]
+
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
+
+=item Notes
+
+=item Optional Parameters
+
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -Append =E<gt> 0|1, A Buffer, A Filename, A
+Filehandle, -Merge =E<gt> 0|1, -Level, -Strategy, -Strict =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item print
+
+=item printf
+
+=item syswrite
+
+=item write
+
+=item flush
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item fileno
+
+=item close
+
+=item newStream
+
+=item deflateParams
+
+=back
+
+=item Importing 
+
+:all, :constants, :flush, :level, :strategy
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::IO::Compress::Gzip, IO::Compress::Gzip    - Perl
+interface to write RFC 1952 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
+=over 4
+
+=item gzip $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
+
+=item gzip \%hash [, OPTS]
+
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
+
+=item Notes
+
+=item Optional Parameters
+
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -Append =E<gt> 0|1, A Buffer, A Filename, A
+Filehandle, -Merge =E<gt> 0|1, -Level, -Strategy, -Mimimal =E<gt> 0|1,
+-Comment =E<gt> $comment, -Name =E<gt> $string, -Time =E<gt> $number,
+-TextFlag =E<gt> 0|1, -HeaderCRC =E<gt> 0|1, -OS_Code =E<gt> $value,
+-ExtraField =E<gt> $data, -ExtraFlags =E<gt> $value, -Strict =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item print
+
+=item printf
+
+=item syswrite
+
+=item write
+
+=item flush
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item fileno
+
+=item close
+
+=item newStream
+
+=item deflateParams
+
+=back
+
+=item Importing 
+
+:all, :constants, :flush, :level, :strategy
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::IO::Compress::RawDeflate, IO::Compress::RawDeflate  
+  - Perl interface to write RFC 1951 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
+=over 4
+
+=item rawdeflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
+
+=item rawdeflate \%hash [, OPTS]
+
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
+
+=item Notes
+
+=item Optional Parameters
+
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -Append =E<gt> 0|1, A Buffer, A Filename, A
+Filehandle, -Merge =E<gt> 0|1, -Level, -Strategy, -Strict =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item print
+
+=item printf
+
+=item syswrite
+
+=item write
+
+=item flush
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item fileno
+
+=item close
+
+=item newStream
+
+=item deflateParams
+
+=back
+
+=item Importing 
+
+:all, :constants, :flush, :level, :strategy
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::IO::Uncompress::AnyInflate,
+IO::Uncompress::AnyInflate - Perl interface to read RFC 1950, 1951 & 1952
+files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
+=over 4
+
+=item anyinflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
+
+=item anyinflate \%hash [, OPTS]
+
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
+
+=item Notes
+
+=item Optional Parameters
+
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1, -ParseExtra =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item fileno
+
+=item close
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::IO::Uncompress::Gunzip, IO::Uncompress::Gunzip -
+Perl interface to read RFC 1952 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
+=over 4
+
+=item gunzip $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
+
+=item gunzip \%hash [, OPTS]
+
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
+
+=item Notes
+
+=item Optional Parameters
+
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1, -ParseExtra =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+Comment
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item fileno
+
+=item close
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::IO::Uncompress::Inflate, IO::Uncompress::Inflate -
+Perl interface to read RFC 1950 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
+=over 4
+
+=item inflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
+
+=item inflate \%hash [, OPTS]
+
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
+
+=item Notes
+
+=item Optional Parameters
+
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item fileno
+
+=item close
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::IO::Uncompress::RawInflate,
+IO::Uncompress::RawInflate - Perl interface to read RFC 1951 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
+=over 4
+
+=item rawinflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
+
+=item rawinflate \%hash [, OPTS]
+
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
+
+=item Notes
+
+=item Optional Parameters
+
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item fileno
+
+=item close
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Compress::Zlib::pod::FAQ, Compress::Zlib::FAQ -- Frequently Asked
+Questions about Compress::Zlib 
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item Compatibility with Unix compress/uncompress.
+
+=item Accessing .tar.Z files
+
+=item Accessing Zip Files
+
+=item Zlib Library Version Support
+
+=back
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Config - access Perl configuration information
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+myconfig(), config_sh(), config_re($regex), config_vars(@names)
+
+=item EXAMPLE
+
+=item WARNING
+
+=item GLOSSARY
+
+=over 4
+
+=item _
+
+C<_a>, C<_exe>, C<_o>
+
+=item a
+
+C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
+C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
+C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
+C<asctime_r_proto>, C<awk>
+
+=item b
+
+C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
+
+=item c
+
+C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
+C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
+C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
+C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
+C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
+C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
+C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
+
+=item d
+
+C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
+C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>,
+C<d_attribute_format>, C<d_attribute_malloc>, C<d_attribute_nonnull>,
+C<d_attribute_noreturn>, C<d_attribute_pure>, C<d_attribute_unused>,
+C<d_attribute_warn_unused_result>, C<d_bcmp>, C<d_bcopy>, C<d_bsd>,
+C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>, C<d_casti32>, C<d_castneg>,
+C<d_charvspr>, C<d_chown>, C<d_chroot>, C<d_chsize>, C<d_class>,
+C<d_clearenv>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>, C<d_copysignl>,
+C<d_crypt>, C<d_crypt_r>, C<d_csh>, C<d_ctermid_r>, C<d_ctime_r>,
+C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>,
+C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>,
+C<d_drand48_r>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>, C<d_endgrent>,
+C<d_endgrent_r>, C<d_endhent>, C<d_endhostent_r>, C<d_endnent>,
+C<d_endnetent_r>, C<d_endpent>, C<d_endprotoent_r>, C<d_endpwent>,
+C<d_endpwent_r>, C<d_endsent>, C<d_endservent_r>, C<d_eofnblk>,
+C<d_eunice>, C<d_faststdio>, C<d_fchdir>, C<d_fchmod>, C<d_fchown>,
+C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>,
+C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>,
+C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>,
+C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>,
+C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>,
+C<d_fsync>, C<d_ftello>, C<d_ftime>, C<d_futimes>, C<d_Gconvert>,
+C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
+C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
+C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
+C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
+C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
+C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
+C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
+C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
+C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
+C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
+C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
+C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
+C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
+C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
+C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
+C<d_htonl>, C<d_ilogbl>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
+C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>,
+C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>,
+C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>,
+C<d_lstat>, C<d_madvise>, C<d_malloc_size>, C<d_malloc_good_size>,
+C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>,
+C<d_memcpy>, C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>,
+C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>,
+C<d_modfl>, C<d_modfl_pow32_bug>, C<d_modflproto>, C<d_mprotect>, C<d_msg>,
+C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>,
+C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>,
+C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>,
+C<d_nl_langinfo>, C<d_nv_preserves_uv>, C<d_nv_zero_is_allbits_zero>,
+C<d_off64_t>, C<d_old_pthread_create_joinable>, C<d_oldpthreads>,
+C<d_oldsock>, C<d_open3>, C<d_pathconf>, C<d_pause>,
+C<d_perl_otherlibdirs>, C<d_phostname>, C<d_pipe>, C<d_poll>,
+C<d_portable>, C<d_PRId64>, C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>,
+C<d_PRIFUldbl>, C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>,
+C<d_PRIu64>, C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>,
+C<d_pthread_atfork>, C<d_pthread_attr_setscope>, C<d_pthread_yield>,
+C<d_pwage>, C<d_pwchange>, C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>,
+C<d_pwgecos>, C<d_pwpasswd>, C<d_pwquota>, C<d_qgcvt>, C<d_quad>,
+C<d_random_r>, C<d_readdir64_r>, C<d_readdir>, C<d_readdir_r>,
+C<d_readlink>, C<d_readv>, C<d_recvmsg>, C<d_rename>, C<d_rewinddir>,
+C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>, C<d_sanemcmp>, C<d_sbrkproto>,
+C<d_scalbnl>, C<d_sched_yield>, C<d_scm_rights>, C<d_SCNfldbl>,
+C<d_seekdir>, C<d_select>, C<d_sem>, C<d_semctl>, C<d_semctl_semid_ds>,
+C<d_semctl_semun>, C<d_semget>, C<d_semop>, C<d_sendmsg>, C<d_setegid>,
+C<d_seteuid>, C<d_setgrent>, C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>,
+C<d_sethostent_r>, C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>,
+C<d_setlocale_r>, C<d_setnent>, C<d_setnetent_r>, C<d_setpent>,
+C<d_setpgid>, C<d_setpgrp2>, C<d_setpgrp>, C<d_setprior>,
+C<d_setproctitle>, C<d_setprotoent_r>, C<d_setpwent>, C<d_setpwent_r>,
+C<d_setregid>, C<d_setresgid>, C<d_setresuid>, C<d_setreuid>, C<d_setrgid>,
+C<d_setruid>, C<d_setsent>, C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>,
+C<d_sfio>, C<d_shm>, C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>,
+C<d_shmdt>, C<d_shmget>, C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>,
+C<d_sockatmark>, C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>,
+C<d_sockpair>, C<d_socks5_init>, C<d_sprintf_returns_strlen>, C<d_sqrtl>,
+C<d_srand48_r>, C<d_srandom_r>, C<d_sresgproto>, C<d_sresuproto>,
+C<d_statblks>, C<d_statfs_f_flags>, C<d_statfs_s>, C<d_statvfs>,
+C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>, C<d_stdio_ptr_lval_nochange_cnt>,
+C<d_stdio_ptr_lval_sets_cnt>, C<d_stdio_stream_array>, C<d_stdiobase>,
+C<d_stdstdio>, C<d_strchr>, C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>,
+C<d_strerror>, C<d_strerror_r>, C<d_strftime>, C<d_strlcat>, C<d_strlcpy>,
+C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>, C<d_strtoq>,
+C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>,
+C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
+C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
+C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
+C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>,
+C<d_ttyname_r>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
+C<d_uname>, C<d_union_semun>, C<d_unordered>, C<d_unsetenv>, C<d_usleep>,
+C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>, C<d_vendorbin>,
+C<d_vendorlib>, C<d_vendorscript>, C<d_vfork>, C<d_void_closedir>,
+C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
+C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
+C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
+C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
+C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
+
+=item e
+
+C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
+C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
+C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
+C<expr>, C<extensions>, C<extras>
+
+=item f
+
+C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
+C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
+C<full_sed>
+
+=item g
+
+C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
+C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
+C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
+C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
+C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
+C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
+C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
+C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
+C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
+C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
+
+=item h
+
+C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
+C<html3dir>, C<html3direxp>
+
+=item i
+
+C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
+C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
+C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
+C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
+C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
+C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
+C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
+C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
+C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
+C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
+C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
+C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
+C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
+C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
+C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
+C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
+C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
+C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
+C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installhtml1dir>,
+C<installhtml3dir>, C<installman1dir>, C<installman3dir>, C<installprefix>,
+C<installprefixexp>, C<installprivlib>, C<installscript>,
+C<installsitearch>, C<installsitebin>, C<installsitehtml1dir>,
+C<installsitehtml3dir>, C<installsitelib>, C<installsiteman1dir>,
+C<installsiteman3dir>, C<installsitescript>, C<installstyle>,
+C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
+C<installvendorhtml1dir>, C<installvendorhtml3dir>, C<installvendorlib>,
+C<installvendorman1dir>, C<installvendorman3dir>, C<installvendorscript>,
+C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
+
+=item k
+
+C<known_extensions>, C<ksh>
+
+=item l
+
+C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
+C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
+C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
+C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
+C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
+C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
+C<lseektype>
+
+=item m
+
+C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
+C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
+C<man3direxp>, C<man3ext>
+
+=item M
+
+C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
+C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
+C<myuname>
+
+=item n
+
+C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
+C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
+C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
+C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
+C<nvsize>, C<nvtype>
+
+=item o
+
+C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
+C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
+
+=item p
+
+C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
+C<perl>, C<perl_patchlevel>
+
+=item P
+
+C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
+C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
+C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>, C<privlibexp>,
+C<procselfexe>, C<prototype>, C<ptrsize>
+
+=item q
+
+C<quadkind>, C<quadtype>
+
+=item r
+
+C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
+C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
+C<rmail>, C<run>, C<runnm>
+
+=item s
+
+C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
+C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
+C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
+C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
+C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
+C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
+C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
+C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
+C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
+C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
+C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
+C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
+C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
+C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
+C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
+C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
+C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
+C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
+C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
+C<submit>, C<subversion>, C<sysman>
+
+=item t
+
+C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
+C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
+C<ttyname_r_proto>
+
+=item u
+
+C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
+C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
+C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
+C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
+C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemallocwrap>,
+C<usemorebits>, C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>,
+C<useperlio>, C<useposix>, C<usereentrant>, C<userelocatableinc>,
+C<usesfio>, C<useshrplib>, C<usesocks>, C<usethreads>, C<usevendorprefix>,
+C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>, C<uvsize>, C<uvtype>,
+C<uvuformat>, C<uvxformat>, C<uvXUformat>
+
+=item v
+
+C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
+C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
+C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
+C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
+C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
+C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
+C<versiononly>, C<vi>, C<voidflags>
+
+=item x
+
+C<xlibpth>
+
+=item y
+
+C<yacc>, C<yaccflags>
+
+=item z
+
+C<zcat>, C<zip>
+
+=back
+
+=item NOTE
+
+=back
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+dynamic, nonxs, static
+
+=item AUTHOR
+
+=back
+
+=head2 Cwd - get pathname of current working directory
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item getcwd and friends
+
+getcwd, cwd, fastcwd, fastgetcwd, getdcwd
+
+=item abs_path and friends
+
+abs_path, realpath, fast_abs_path
+
+=item $ENV{PWD}
+
+=back
+
+=item NOTES
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 DB - programmatic interface to the Perl debugging API (draft,
+subject to
+change)
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Global Variables
+
+ $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace, @DB::args, 
+@DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
+$DB::lineno
+
+=item API Methods
+
+CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
+CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
+
+=item Client Callback Methods
+
+CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
+CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
+CLIENT->output(LIST)
+
+=back
+
+=item BUGS
+
+=item AUTHOR
+
+=back
+
+=head2 DBM_Filter -- Filter DBM keys/values 
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item What is a DBM Filter?
+
+=over 4
+
+=item So what's new?
+
+=back
+
+=item METHODS
+
+=over 4
+
+=item $db->Filter_Push()
+
+=item $db->Filter_Key_Push()
+
+=item $db->Filter_Value_Push()
+
+Filter_Push, Filter_Key_Push, Filter_Value_Push
+
+=item $db->Filter_Pop()
+
+=item $db->Filtered()
+
+=back
+
+=item Writing a Filter
+
+=over 4
+
+=item Immediate Filters
+
+=item Canned Filters
+
+"name", params
+
+=back
+
+=item Filters Included
+
+utf8, encode, compress, int32, null
+
+=item NOTES
+
+=over 4
+
+=item Maintain Round Trip Integrity
+
+=item Don't mix filtered & non-filtered data in the same database file. 
+
+=back
+
+=item EXAMPLE
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=back
+
+=head2 DB_File - Perl5 access to Berkeley DB version 1.x
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
+
+=over 4
+
+=item Using DB_File with Berkeley DB version 2 or greater
+
+=item Interface to Berkeley DB
+
+=item Opening a Berkeley DB Database File
+
+=item Default Parameters
+
+=item In Memory Databases
+
+=back
+
+=item DB_HASH
+
+=over 4
+
+=item A Simple Example
+
+=back
+
+=item DB_BTREE
+
+=over 4
+
+=item Changing the BTREE sort order
+
+=item Handling Duplicate Keys 
+
+=item The get_dup() Method
+
+=item The find_dup() Method
+
+=item The del_dup() Method
+
+=item Matching Partial Keys 
+
+=back
+
+=item DB_RECNO
+
+=over 4
+
+=item The 'bval' Option
+
+=item A Simple Example
+
+=item Extra RECNO Methods
+
+B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
+B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
+length, elements);>
+
+=item Another Example
+
+=back
+
+=item THE API INTERFACE
+
+B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
+$X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
+$flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
+$value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
+
+=item DBM FILTERS
+
+B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
+B<filter_fetch_value>
+
+=over 4
+
+=item The Filter
+
+=item An Example -- the NULL termination problem.
+
+=item Another Example -- Key is a C int.
+
+=back
+
+=item HINTS AND TIPS 
+
+=over 4
+
+=item Locking: The Trouble with fd
+
+=item Safe ways to lock a database
+
+B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
+
+=item Sharing Databases With C Applications
+
+=item The untie() Gotcha
+
+=back
+
+=item COMMON QUESTIONS
+
+=over 4
+
+=item Why is there Perl source in my database?
+
+=item How do I store complex data structures with DB_File?
+
+=item What does "Invalid Argument" mean?
+
+=item What does "Bareword 'DB_File' not allowed" mean? 
+
+=back
+
+=item REFERENCES
+
+=item HISTORY
+
+=item BUGS
+
+=item AVAILABILITY
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=back
+
+=head2 Data::Dumper - stringified perl data structures, suitable for both
+printing and C<eval>
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Methods
+
+I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
+I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
+I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
+I<$OBJ>->Reset
+
+=item Functions
+
+Dumper(I<LIST>)
+
+=item Configuration Variables or Methods
+
+=item Exports
+
+Dumper
+
+=back
+
+=item EXAMPLES
+
+=item BUGS
+
+=over 4
+
+=item NOTE
+
+=back
+
+=item AUTHOR
+
+=item VERSION
+
+=item SEE ALSO
+
+=back
+
+=head2 Devel::DProf - a Perl code profiler
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item PROFILE FORMAT
+
+=item AUTOLOAD
+
+=item ENVIRONMENT
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
+=head2 Devel::PPPort - Perl/Pollution/Portability
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Why use ppport.h?
+
+You should use F<ppport.h> in modern code so that your code will work
+with the widest range of Perl interpreters possible, without significant
+additional work.
+
+=item How to use ppport.h
+
+=item Running ppport.h
+
+=back
+
+=item FUNCTIONS
+
+=over 4
+
+=item WriteFile
+
+=back
+
+=item COMPATIBILITY
+
+=over 4
+
+=item Provided Perl compatibility API
+
+=item Perl API not supported by ppport.h
+
+perl 5.9.2, perl 5.9.1, perl 5.9.0, perl 5.8.3, perl 5.8.1, perl 5.8.0,
+perl 5.7.3, perl 5.7.2, perl 5.7.1, perl 5.6.1, perl 5.6.0, perl 5.005_03,
+perl 5.005, perl 5.004_05, perl 5.004_04, perl 5.004
+
+=back
+
+=item BUGS
+
+=item AUTHORS
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 Devel::Peek - A data debugging tool for the XS programmer
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Runtime debugging
+
+=item Memory footprint debugging
+
+=back
+
+=item EXAMPLES
+
+=over 4
+
+=item A simple scalar string
+
+=item A simple scalar number
+
+=item A simple scalar with an extra reference
+
+=item A reference to a simple scalar
+
+=item A reference to an array
+
+=item A reference to a hash
+
+=item Dumping a large array or hash
+
+=item A reference to an SV which holds a C pointer
+
+=item A reference to a subroutine
+
+=back
+
+=item EXPORTS
+
+=item BUGS
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=back
+
+=head2 Devel::SelfStubber - generate stubs for a SelfLoading module
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=head2 Devel::Size - Perl extension for finding the memory usage of Perl
+variables
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item FUNCTIONS
+
+=over 4
+
+=item size($ref)
+
+=item total_size($ref)
+
+=back
+
+=item EXPORT
+
+=item UNDERSTANDING MEMORY ALLOCATION
+
+=over 4
+
+=item The C library
+
+=item Perl
+
+=back
+
+=item DANGERS
+
+=item Messages: texts originating from this module.
+
+=over 4
+
+=item Errors
+
+=item warnings
+
+=back
+
+=item BUGS
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 Digest - Modules that calculate message digests
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+I<binary>, I<hex>, I<base64>
+
+=item OO INTERFACE
+
+$ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
+Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
+$ctx->add( $data, ... ), $ctx->addfile( $io_handle ), $ctx->add_bits(
+$data, $nbits ), $ctx->add_bits( $bitstring ), $ctx->digest,
+$ctx->hexdigest, $ctx->b64digest
+
+=item Digest speed
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=back
+
+=head2 Digest::MD5 - Perl interface to the MD5 Algorithm
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item FUNCTIONS
+
+md5($data,...), md5_hex($data,...), md5_base64($data,...)
+
+=item METHODS
+
+$md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
+$md5->addfile($io_handle), $md5->add_bits($data, $nbits),
+$md5->add_bits($bitstring), $md5->digest, $md5->hexdigest, $md5->b64digest
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item COPYRIGHT
+
+=item AUTHORS
+
+=back
+
+=head2 Digest::SHA - Perl extension for SHA-1/224/256/384/512
+
+=over 4
+
+=item SYNOPSIS (SHA)
+
+=item SYNOPSIS (HMAC-SHA)
+
+=item ABSTRACT
+
+=item DESCRIPTION
+
+=item NIST STATEMENT ON SHA-1
+
+=item EXPORT
+
+=item EXPORTABLE FUNCTIONS
+
+B<sha1($data, ...)>, B<sha224($data, ...)>, B<sha256($data, ...)>,
+B<sha384($data, ...)>, B<sha512($data, ...)>, B<sha1_hex($data, ...)>,
+B<sha224_hex($data, ...)>, B<sha256_hex($data, ...)>, B<sha384_hex($data,
+...)>, B<sha512_hex($data, ...)>, B<sha1_base64($data, ...)>,
+B<sha224_base64($data, ...)>, B<sha256_base64($data, ...)>,
+B<sha384_base64($data, ...)>, B<sha512_base64($data, ...)>, B<new($alg)>,
+B<reset($alg)>, B<hashsize>, B<algorithm>, B<clone>, B<add($data, ...)>,
+B<add_bits($data, $nbits)>, B<add_bits($bits)>, B<addfile(*FILE)>,
+B<dump($filename)>, B<load($filename)>, B<digest>, B<hexdigest>,
+B<b64digest>, B<hmac_sha1($data, $key)>, B<hmac_sha224($data, $key)>,
+B<hmac_sha256($data, $key)>, B<hmac_sha384($data, $key)>,
+B<hmac_sha512($data, $key)>, B<hmac_sha1_hex($data, $key)>,
+B<hmac_sha224_hex($data, $key)>, B<hmac_sha256_hex($data, $key)>,
+B<hmac_sha384_hex($data, $key)>, B<hmac_sha512_hex($data, $key)>,
+B<hmac_sha1_base64($data, $key)>, B<hmac_sha224_base64($data, $key)>,
+B<hmac_sha256_base64($data, $key)>, B<hmac_sha384_base64($data, $key)>,
+B<hmac_sha512_base64($data, $key)>
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item ACKNOWLEDGMENTS
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Digest::base - Digest base class
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=back
+
+=head2 Digest::file - Calculate digests of files
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+digest_file( $file, $algorithm, [$arg,...] ), digest_file_hex( $file,
+$algorithm, [$arg,...] ), digest_file_base64( $file, $algorithm, [$arg,...]
+)
+
+=item SEE ALSO
+
+=back
+
+=head2 DirHandle - supply object methods for directory handles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item NOTES
+
+=back
+
+=head2 Dumpvalue - provides screen dump of Perl data.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Creation
+
+C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
+C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
+C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
+stopDbSignal
+
+=item Methods
+
+dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
+compactDump, veryCompact, set, get
+
+=back
+
+=back
+
+=head2 DynaLoader - Dynamically load C libraries into Perl code
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+@dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
+@dl_modules, @dl_shared_objects, dl_error(), $dl_debug, dl_findfile(),
+dl_expandspec(), dl_load_file(), dl_unload_file(), dl_load_flags(),
+dl_find_symbol(), dl_find_symbol_anywhere(), dl_undef_symbols(),
+dl_install_xsub(), bootstrap()
+
+=item AUTHOR
+
+=back
+
+=head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
+Perl code
+
+=over 4
+
+=item VERSION
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Migration from C<DynaLoader>
+
+=item Backward compatible boilerplate
+
+=back
+
+=item Order of initialization: early load()
+
+=over 4
+
+=item The most hairy case
+
+=back
+
+=item DIAGNOSTICS
+
+Can't find '%s' symbol in %s, Can't load '%s' for module %s: %s, Undefined
+symbols present after loading %s: %s, XSLoader::load('Your::Module',
+$Your::Module::VERSION)
+
+=item LIMITATIONS
+
+=item BUGS
+
+=item SEE ALSO
+
+=item AUTHORS
+
+=item COPYRIGHT
+
+=back
+
+=head2 Encode - character encodings
+
+=over 4
+
+=item SYNOPSIS
+
+=over 4
+
+=item Table of Contents
+
+=back
+
+=item DESCRIPTION
+
+=over 4
+
+=item TERMINOLOGY
+
+=back
+
+=item PERL ENCODING API
+
+$octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
+$octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
+CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
+CHECK]);
+
+=over 4
+
+=item Listing available encodings
+
+=item Defining Aliases
+
+=back
+
+=item Encoding via PerlIO
+
+=item Handling Malformed Data
+
+B<NOTE:> Not all encoding support this feature, I<CHECK> =
+Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1), I<CHECK> =
+Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode (I<CHECK> =
+Encode::FB_PERLQQ), HTML charref mode (I<CHECK> = Encode::FB_HTMLCREF), XML
+charref mode (I<CHECK> = Encode::FB_XMLCREF), The bitmask
+
+=over 4
+
+=item coderef for CHECK
+
+=back
+
+=item Defining Encodings
+
+=item The UTF-8 flag
+
+Goal #1:, Goal #2:, Goal #3:, Goal #4:
+
+=over 4
+
+=item Messing with Perl's Internals
+
+is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
+
+=back
+
+=item UTF-8 vs. utf8
+
+=item SEE ALSO
+
+=item MAINTAINER
+
+=back
+
+=head2 Encode::Alias - alias definitions to encodings
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+As a simple string, As a qr// compiled regular expression, e.g.:, As a code
+reference, e.g.:
+
+=over 4
+
+=item Alias overloading
+
+=back
+
+=item SEE ALSO
+
+=back
+
+=head2 Encode::Byte - Single Byte Encodings
+
+=over 4
+
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=back
+
+=head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
+
+=head2 Encode::CN - China-based Chinese Encodings
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item NOTES
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
+=head2 Encode::CN::HZ -- internally used by Encode::CN
+
+=head2 Encode::Config -- internally used by Encode
+
+=head2 Encode::EBCDIC - EBCDIC Encodings
+
+=over 4
+
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=back
+
+=head2 Encode::Encoding - Encode Implementation Base Class
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Methods you should implement
+
+-E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
+-E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
+
+=item Other methods defined in Encode::Encodings
+
+-E<gt>name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
+-E<gt>needs_lines()
+
+=item Example: Encode::ROT13
+
+=back
+
+=item Why the heck Encode API is different?
+
+=over 4
+
+=item Compiled Encodings
+
+=back
+
+=item SEE ALSO
+
+Scheme 1, Scheme 2, Other Schemes
+
+=back
+
+=head2 Encode::Guess -- Guesses encoding from data
+
+=over 4
+
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
 
-Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
-C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
+Encode::Guess->set_suspects, Encode::Guess->add_suspects,
+Encode::decode("Guess" ...), Encode::Guess->guess($data),
+guess_encoding($data, [, I<list of suspects>])
 
-=item Initializing with C<new>
+=item CAVEATS
+
+=item TO DO
+
+=item SEE ALSO
 
 =back
 
-=item EXAMPLES
+=head2 Encode::JP - Japanese Encodings
 
-Example 1, Example 2, Example 3
+=over 4
 
-=item Author and Modification History
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
+
+=item Note on ISO-2022-JP(-1)?
+
+=item BUGS
+
+=item SEE ALSO
 
 =back
 
-=head2 Config - access Perl configuration information
+=head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
+
+=head2 Encode::JP::JIS7 -- internally used by Encode::JP
+
+=head2 Encode::KR - Korean Encodings
 
 =over 4
 
@@ -11630,331 +15568,241 @@ Example 1, Example 2, Example 3
 
 =item DESCRIPTION
 
-myconfig(), config_sh(), config_re($regex), config_vars(@names)
+=item BUGS
 
-=item EXAMPLE
+=item SEE ALSO
 
-=item WARNING
+=back
 
-=item GLOSSARY
+=head2 Encode::KR::2022_KR -- internally used by Encode::KR
+
+=head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
 
 =over 4
 
-=item _
+=item SYNOPSIS
 
-C<_a>, C<_exe>, C<_o>
+=item ABSTRACT
 
-=item a
+=item DESCRIPTION
 
-C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
-C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
-C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
-C<asctime_r_proto>, C<awk>
+=item BUGS
 
-=item b
+=item SEE ALSO
 
-C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
+=back
 
-=item c
+=head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
 
-C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
-C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
-C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
-C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
-C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
-C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
-C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
+=over 4
 
-=item d
+=item Overview
 
-C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
-C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>,
-C<d_bcmp>, C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>,
-C<d_bzero>, C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>,
-C<d_chroot>, C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>,
-C<d_const>, C<d_copysignl>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
-C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
-C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>,
-C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>,
-C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>,
-C<d_endhostent_r>, C<d_endnent>, C<d_endnetent_r>, C<d_endpent>,
-C<d_endprotoent_r>, C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>,
-C<d_endservent_r>, C<d_eofnblk>, C<d_eunice>, C<d_faststdio>, C<d_fchdir>,
-C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
-C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>,
-C<d_flexfnam>, C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>,
-C<d_fpathconf>, C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>,
-C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>,
-C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>,
-C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
-C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
-C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
-C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
-C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
-C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
-C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
-C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
-C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
-C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
-C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
-C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
-C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
-C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
-C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
-C<d_htonl>, C<d_ilogbl>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
-C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>,
-C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>,
-C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>,
-C<d_lstat>, C<d_madvise>, C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>,
-C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>, C<d_memset>,
-C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>,
-C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>, C<d_modflproto>,
-C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>,
-C<d_msg_peek>, C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>,
-C<d_msgrcv>, C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>,
-C<d_nice>, C<d_nl_langinfo>, C<d_nv_preserves_uv>, C<d_off64_t>,
-C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
-C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
-C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
-C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
-C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
-C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>, C<d_pthread_atfork>,
-C<d_pthread_attr_setscope>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
-C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
-C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
-C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
-C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
-C<d_sanemcmp>, C<d_sbrkproto>, C<d_scalbnl>, C<d_sched_yield>,
-C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
-C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
-C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
-C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>,
-C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>,
-C<d_setnent>, C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
-C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>,
-C<d_setpwent>, C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>,
-C<d_setresuid>, C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>,
-C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
-C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
-C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
-C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
-C<d_socks5_init>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
-C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
-C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
-C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
-C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
-C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
-C<d_strftime>, C<d_strlcat>, C<d_strlcpy>, C<d_strtod>, C<d_strtol>,
-C<d_strtold>, C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>,
-C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>,
-C<d_syscallproto>, C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>,
-C<d_system>, C<d_tcgetpgrp>, C<d_tcsetpgrp>, C<d_telldir>,
-C<d_telldirproto>, C<d_time>, C<d_times>, C<d_tm_tm_gmtoff>,
-C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>, C<d_ttyname_r>, C<d_tzname>,
-C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
-C<d_unordered>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>,
-C<d_vendorbin>, C<d_vendorlib>, C<d_vendorscript>, C<d_vfork>,
-C<d_void_closedir>, C<d_voidsig>, C<d_voidtty>, C<d_volatile>,
-C<d_vprintf>, C<d_wait4>, C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>,
-C<d_writev>, C<d_xenix>, C<date>, C<db_hashtype>, C<db_prefixtype>,
-C<db_version_major>, C<db_version_minor>, C<db_version_patch>,
-C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>, C<doublesize>,
-C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
+=item How does it work?
 
-=item e
+=item Line Buffering
 
-C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
-C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
-C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
-C<expr>, C<extensions>, C<extras>
+=over 4
 
-=item f
+=item How can I tell whether my encoding fully supports PerlIO ?
 
-C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
-C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
-C<full_sed>
+=back
 
-=item g
+=item SEE ALSO
 
-C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
-C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
-C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
-C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
-C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
-C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
-C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
-C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
-C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
-C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
+=back
 
-=item h
+=head2 Encode::Supported -- Encodings supported by Encode
 
-C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
-C<html3dir>, C<html3direxp>
+=over 4
 
-=item i
+=item DESCRIPTION
 
-C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
-C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
-C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
-C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
-C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
-C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
-C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
-C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
-C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
-C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
-C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
-C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
-C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
-C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
-C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
-C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
-C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
-C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
-C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installhtml1dir>,
-C<installhtml3dir>, C<installman1dir>, C<installman3dir>, C<installprefix>,
-C<installprefixexp>, C<installprivlib>, C<installscript>,
-C<installsitearch>, C<installsitebin>, C<installsitehtml1dir>,
-C<installsitehtml3dir>, C<installsitelib>, C<installsiteman1dir>,
-C<installsiteman3dir>, C<installsitescript>, C<installstyle>,
-C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
-C<installvendorhtml1dir>, C<installvendorhtml3dir>, C<installvendorlib>,
-C<installvendorman1dir>, C<installvendorman3dir>, C<installvendorscript>,
-C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
+=over 4
 
-=item k
+=item Encoding Names
 
-C<known_extensions>, C<ksh>
+=back
 
-=item l
+=item Supported Encodings
+
+=over 4
+
+=item Built-in Encodings
+
+=item Encode::Unicode -- other Unicode encodings
+
+=item Encode::Byte -- Extended ASCII
+
+ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
+the Cyrillic world, gsm0338 - Hentai Latin 1
+
+=item CJK: Chinese, Japanese, Korean (Multibyte)
+
+Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
+Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
+Encode::JIS2K -- JIS X 0213 encodings via CPAN
+
+=item Miscellaneous encodings
+
+Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
+
+=back
+
+=item Unsupported encodings
+
+  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
+Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
+System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
+Various Mac encodings, (Mac) Indic encodings
+
+=item Encoding vs. Charset -- terminology
+
+=item Encoding Classification (by Anton Tagunov and Dan Kogai)
+
+=over 4
+
+=item Microsoft-related naming mess
+
+KS_C_5601-1987, GB2312, Big5, Shift_JIS
+
+=back
+
+=item Glossary
+
+character repertoire, coded character set (CCS), character encoding scheme
+(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
+UTF-16
+
+=item See Also
+
+=item References
+
+ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
+RFC, UC, Unicode Glossary
+
+=over 4
+
+=item Other Notable Sites
+
+czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
+"Introduction to i18n"
+
+=item Offline sources
+
+C<CJKV Information Processing> by Ken Lunde
+
+=back
+
+=back
+
+=head2 Encode::Symbol - Symbol Encodings
+
+=over 4
+
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=back
+
+=head2 Encode::TW - Taiwan-based Chinese Encodings
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item NOTES
+
+=item BUGS
 
-C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
-C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
-C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
-C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
-C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
-C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
-C<lseektype>
+=item SEE ALSO
 
-=item m
+=back
 
-C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
-C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
-C<man3direxp>, C<man3ext>
+=head2 Encode::Unicode -- Various Unicode Transformation Formats
 
-=item M
+=over 4
 
-C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
-C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
-C<myuname>
+=item SYNOPSIS
 
-=item n
+=item ABSTRACT
 
-C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
-C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
-C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
-C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
-C<nvsize>, C<nvtype>
+L<http://www.unicode.org/glossary/> says:, Quick Reference
 
-=item o
+=item Size, Endianness, and BOM
 
-C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
-C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
+=over 4
 
-=item p
+=item by size
 
-C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
-C<perl>, C<perl_patchlevel>
+=item by endianness
 
-=item P
+BOM as integer when fetched in network byte order
 
-C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
-C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
-C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>, C<privlibexp>,
-C<procselfexe>, C<prototype>, C<ptrsize>
+=back
 
-=item q
+=item Surrogate Pairs
 
-C<quadkind>, C<quadtype>
+=item Error Checking
 
-=item r
+=item SEE ALSO
 
-C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
-C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
-C<rmail>, C<run>, C<runnm>
+=back
 
-=item s
+=head2 Encode::Unicode::UTF7 -- UTF-7 encoding
 
-C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
-C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
-C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
-C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
-C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
-C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
-C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
-C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
-C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
-C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
-C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
-C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
-C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
-C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
-C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
-C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
-C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
-C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
-C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
-C<submit>, C<subversion>, C<sysman>
+=over 4
 
-=item t
+=item SYNOPSIS
 
-C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
-C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
-C<ttyname_r_proto>
+=item ABSTRACT
 
-=item u
+=item In Practice
 
-C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
-C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
-C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
-C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
-C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemallocwrap>,
-C<usemorebits>, C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>,
-C<useperlio>, C<useposix>, C<usereentrant>, C<usesfio>, C<useshrplib>,
-C<usesocks>, C<usethreads>, C<usevendorprefix>, C<usevfork>, C<usrinc>,
-C<uuname>, C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>,
-C<uvXUformat>
+=item SEE ALSO
 
-=item v
+=back
 
-C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
-C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
-C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
-C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
-C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
-C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
-C<versiononly>, C<vi>, C<voidflags>
+=head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
+encodings
 
-=item x
+=over 4
 
-C<xlibpth>
+=item SYNOPSIS
 
-=item y
+=item DESCRIPTION
 
-C<yacc>, C<yaccflags>
+As a simple string, As a qr// compiled regular expression, e.g.:, As a code
+reference, e.g.:
 
-=item z
+=over 4
 
-C<zcat>, C<zip>
+=item Alias overloading
 
 =back
 
-=item NOTE
+=item SEE ALSO
 
 =back
 
-=head2 Cwd - get pathname of current working directory
+=head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
+Internally used by Encode::??::ISO_2022_*
+
+=head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
+Encode::CN
+
+=head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
+Encode
+
+=head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
+Implementation Base Class
 
 =over 4
 
@@ -11964,269 +15812,330 @@ C<zcat>, C<zip>
 
 =over 4
 
-=item getcwd and friends
+=item Methods you should implement
 
-getcwd, cwd, fastcwd, fastgetcwd, getdcwd
+-E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
+-E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
 
-=item abs_path and friends
+=item Other methods defined in Encode::Encodings
 
-abs_path, realpath, fast_abs_path
+-E<gt>name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
+-E<gt>needs_lines()
 
-=item $ENV{PWD}
+=item Example: Encode::ROT13
 
 =back
 
-=item NOTES
+=item Why the heck Encode API is different?
 
-=item AUTHOR
+=over 4
+
+=item Compiled Encodings
+
+=back
 
 =item SEE ALSO
 
+Scheme 1, Scheme 2, Other Schemes
+
 =back
 
-=head2 DB - programmatic interface to the Perl debugging API (draft,
-subject to
-change)
+=head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
+data
 
 =over 4
 
 =item SYNOPSIS
 
+=item ABSTRACT
+
 =item DESCRIPTION
 
-=over 4
+Encode::Guess->set_suspects, Encode::Guess->add_suspects,
+Encode::decode("Guess" ...), Encode::Guess->guess($data),
+guess_encoding($data, [, I<list of suspects>])
 
-=item Global Variables
+=item CAVEATS
 
- $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace, @DB::args, 
-@DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
-$DB::lineno
+=item TO DO
 
-=item API Methods
+=item SEE ALSO
 
-CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
-CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
+=back
 
-=item Client Callback Methods
+=head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
+Encode::JP::2022_JP*
 
-CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
-CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
-CLIENT->output(LIST)
+=head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
+by Encode::JP
 
-=back
+=head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
+used by Encode::KR
+
+=head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
+and 'Q' header encoding
+
+=over 4
+
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
 
 =item BUGS
 
-=item AUTHOR
+=item SEE ALSO
 
 =back
 
-=head2 DBM_Filter -- Filter DBM keys/values 
+=head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
+on Encode and PerlIO
 
 =over 4
 
-=item SYNOPSIS
+=item Overview
+
+=item How does it work?
+
+=item Line Buffering
+
+=over 4
+
+=item How can I tell whether my encoding fully supports PerlIO ?
+
+=back
+
+=item SEE ALSO
+
+=back
+
+=head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
+supported by Encode
+
+=over 4
 
 =item DESCRIPTION
 
-=item What is a DBM Filter?
+=over 4
+
+=item Encoding Names
+
+=back
+
+=item Supported Encodings
 
 =over 4
 
-=item So what's new?
+=item Built-in Encodings
+
+=item Encode::Unicode -- other Unicode encodings
+
+=item Encode::Byte -- Extended ASCII
+
+ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
+the Cyrillic world, gsm0338 - Hentai Latin 1
+
+=item CJK: Chinese, Japanese, Korean (Multibyte)
+
+Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
+Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
+Encode::JIS2K -- JIS X 0213 encodings via CPAN
+
+=item Miscellaneous encodings
+
+Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
+
+=back
+
+=item Unsupported encodings
+
+  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
+Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
+System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
+Various Mac encodings, (Mac) Indic encodings
 
-=back
+=item Encoding vs. Charset -- terminology
 
-=item METHODS
+=item Encoding Classification (by Anton Tagunov and Dan Kogai)
 
 =over 4
 
-=item $db->Filter_Push()
+=item Microsoft-related naming mess
 
-=item $db->Filter_Key_Push()
+KS_C_5601-1987, GB2312, Big5, Shift_JIS
 
-=item $db->Filter_Value_Push()
+=back
 
-Filter_Push, Filter_Key_Push, Filter_Value_Push
+=item Glossary
 
-=item $db->Filter_Pop()
+character repertoire, coded character set (CCS), character encoding scheme
+(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
+UTF-16
 
-=item $db->Filtered()
+=item See Also
 
-=back
+=item References
 
-=item Writing a Filter
+ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
+RFC, UC, Unicode Glossary
 
 =over 4
 
-=item Immediate Filters
+=item Other Notable Sites
 
-=item Canned Filters
+czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
+"Introduction to i18n"
 
-"name", params
+=item Offline sources
 
-=back
+C<CJKV Information Processing> by Ken Lunde
 
-=item Filters Included
+=back
 
-utf8, encode, compress, int32, null
+=back
 
-=item NOTES
+=head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
+encoding
 
 =over 4
 
-=item Maintain Round Trip Integrity
-
-=item Don't mix filtered & non-filtered data in the same database file. 
+=item SYNOPSIS
 
-=back
+=item ABSTRACT
 
-=item EXAMPLE
+=item In Practice
 
 =item SEE ALSO
 
-=item AUTHOR
-
 =back
 
-=head2 DB_File - Perl5 access to Berkeley DB version 1.x
+=head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
+=item ABSTRACT
 
-B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
+=item Description
 
 =over 4
 
-=item Using DB_File with Berkeley DB version 2 or greater
-
-=item Interface to Berkeley DB
+=item Predefined Methods
 
-=item Opening a Berkeley DB Database File
+$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
+$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
+$e-E<gt>bytes([$encoding])
 
-=item Default Parameters
+=item Example: base64 transcoder
 
-=item In Memory Databases
+=item Operator Overloading
 
 =back
 
-=item DB_HASH
-
-=over 4
-
-=item A Simple Example
+=item SEE ALSO
 
 =back
 
-=item DB_BTREE
+=head2 Encodencoding, encoding - allows you to write your script in
+non-ascii or non-utf8
 
 =over 4
 
-=item Changing the BTREE sort order
+=item SYNOPSIS
 
-=item Handling Duplicate Keys 
+=item ABSTRACT
 
-=item The get_dup() Method
+=over 4
 
-=item The find_dup() Method
+=item Literal Conversions
 
-=item The del_dup() Method
+=item PerlIO layers for C<STD(IN|OUT)>
 
-=item Matching Partial Keys 
+=item Implicit upgrading for byte strings
 
 =back
 
-=item DB_RECNO
+=item FEATURES THAT REQUIRE 5.8.1
 
-=over 4
+"NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
 
-=item The 'bval' Option
+=item USAGE
 
-=item A Simple Example
+use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
+I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
 
-=item Extra RECNO Methods
+=item The Filter Option
 
-B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
-B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
-length, elements);>
+=over 4
 
-=item Another Example
+=item Filter-related changes at Encode version 1.87
 
 =back
 
-=item THE API INTERFACE
+=item CAVEATS
 
-B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
-$X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
-$flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
-$value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
+=over 4
 
-=item DBM FILTERS
+=item NOT SCOPED
 
-B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
-B<filter_fetch_value>
+=item DO NOT MIX MULTIPLE ENCODINGS
 
-=over 4
+=item tr/// with ranges
 
-=item The Filter
+Legend of characters above
 
-=item An Example -- the NULL termination problem.
+=back
 
-=item Another Example -- Key is a C int.
+=item EXAMPLE - Greekperl
 
-=back
+=item KNOWN PROBLEMS
 
-=item HINTS AND TIPS 
+literals in regex that are longer than 127 bytes, EBCDIC, format
 
 =over 4
 
-=item Locking: The Trouble with fd
-
-=item Safe ways to lock a database
+=item The Logic of :locale
 
-B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
+=back
 
-=item Sharing Databases With C Applications
+=item HISTORY
 
-=item The untie() Gotcha
+=item SEE ALSO
 
 =back
 
-=item COMMON QUESTIONS
+=head2 Encoder, Encode::Encoder -- Object Oriented Encoder
 
 =over 4
 
-=item Why is there Perl source in my database?
-
-=item How do I store complex data structures with DB_File?
+=item SYNOPSIS
 
-=item What does "Invalid Argument" mean?
+=item ABSTRACT
 
-=item What does "Bareword 'DB_File' not allowed" mean? 
+=item Description
 
-=back
+=over 4
 
-=item REFERENCES
+=item Predefined Methods
 
-=item HISTORY
+$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
+$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
+$e-E<gt>bytes([$encoding])
 
-=item BUGS
+=item Example: base64 transcoder
 
-=item AVAILABILITY
+=item Operator Overloading
 
-=item COPYRIGHT
+=back
 
 =item SEE ALSO
 
-=item AUTHOR
-
 =back
 
-=head2 Data::Dumper - stringified perl data structures, suitable for both
-printing and C<eval>
+=head2 English - use nice English (or awk) names for ugly punctuation
+variables
 
 =over 4
 
@@ -12234,46 +16143,42 @@ printing and C<eval>
 
 =item DESCRIPTION
 
-=over 4
+=item PERFORMANCE
 
-=item Methods
+=back
 
-I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
-I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
-I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
-I<$OBJ>->Reset
+=head2 Env - perl module that imports environment variables as scalars or
+arrays
 
-=item Functions
+=over 4
 
-Dumper(I<LIST>)
+=item SYNOPSIS
 
-=item Configuration Variables or Methods
+=item DESCRIPTION
 
-=item Exports
+=item LIMITATIONS
 
-Dumper
+=item AUTHOR
 
 =back
 
-=item EXAMPLES
-
-=item BUGS
+=head2 Errno - System errno constants
 
 =over 4
 
-=item NOTE
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item AUTHOR
+=item CAVEATS
 
-=item VERSION
+=item AUTHOR
 
-=item SEE ALSO
+=item COPYRIGHT
 
 =back
 
-=head2 Devel::DProf - a Perl code profiler
+=head2 Exporter - Implements default import method for modules
 
 =over 4
 
@@ -12281,65 +16186,72 @@ Dumper
 
 =item DESCRIPTION
 
-=item PROFILE FORMAT
+=over 4
 
-=item AUTOLOAD
+=item How to Export
 
-=item ENVIRONMENT
+=item Selecting What To Export
 
-=item BUGS
+=item How to Import
 
-=item SEE ALSO
+C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
 
 =back
 
-=head2 Devel::PPPort - Perl/Pollution/Portability
+=item Advanced features
 
 =over 4
 
-=item SYNOPSIS
+=item Specialised Import Lists
 
-=item DESCRIPTION
+=item Exporting without using Exporter's import method
 
-=over 4
+=item Exporting without inheriting from Exporter
 
-=item Why use ppport.h?
+=item Module Version Checking
 
-You should use F<ppport.h> in modern code so that your code will work
-with the widest range of Perl interpreters possible, without significant
-additional work.
+=item Managing Unknown Symbols
 
-=item How to use ppport.h
+=item Tag Handling Utility Functions
 
-=item Running ppport.h
+=item Generating combined tags
+
+=item C<AUTOLOAD>ed Constants
 
 =back
 
-=item FUNCTIONS
+=back
+
+=head2 Exporter::Heavy - Exporter guts
 
 =over 4
 
-=item WriteFile
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =back
 
-=item COMPATIBILITY
+=head2 ExtUtils::CBuilder - Compile and link C code for Perl modules
 
 =over 4
 
-=item Provided Perl compatibility API
+=item SYNOPSIS
 
-=item Perl API not supported by ppport.h
+=item DESCRIPTION
 
-perl 5.9.2, perl 5.9.1, perl 5.9.0, perl 5.8.3, perl 5.8.1, perl 5.8.0,
-perl 5.7.3, perl 5.7.2, perl 5.7.1, perl 5.6.1, perl 5.6.0, perl 5.005_03,
-perl 5.005, perl 5.004_05, perl 5.004_04, perl 5.004
+=item METHODS
 
-=back
+new, have_compiler, compile, C<object_file>, C<include_dirs>,
+C<extra_compiler_flags>, link, lib_file, module_name, extra_linker_flags,
+link_executable, exe_file, object_file, lib_file, exe_file, prelink,
+need_prelink, extra_link_args_after_prelink
 
-=item BUGS
+=item TO DO
 
-=item AUTHORS
+=item HISTORY
+
+=item AUTHOR
 
 =item COPYRIGHT
 
@@ -12347,67 +16259,61 @@ perl 5.005, perl 5.004_05, perl 5.004_04, perl 5.004
 
 =back
 
-=head2 Devel::Peek - A data debugging tool for the XS programmer
+=head2 ExtUtils::CBuilder::Platform::Windows - Builder class for Windows
+platforms
 
 =over 4
 
-=item SYNOPSIS
-
 =item DESCRIPTION
 
-=over 4
-
-=item Runtime debugging
+=item AUTHOR
 
-=item Memory footprint debugging
+=item SEE ALSO
 
 =back
 
-=item EXAMPLES
+=head2 ExtUtils::Command - utilities to replace common UNIX commands in
+Makefiles etc.
 
 =over 4
 
-=item A simple scalar string
-
-=item A simple scalar number
-
-=item A simple scalar with an extra reference
+=item SYNOPSIS
 
-=item A reference to a simple scalar
+=item DESCRIPTION
 
-=item A reference to an array
+=back
 
-=item A reference to a hash
+cat
 
-=item Dumping a large array or hash
+eqtime
 
-=item A reference to an SV which holds a C pointer
+rm_rf
 
-=item A reference to a subroutine
+rm_f
 
-=back
+touch
 
-=item EXPORTS
+mv
 
-=item BUGS
+cp
 
-=item AUTHOR
+chmod
 
-=item SEE ALSO
+mkpath
 
-=back
+test_f
 
-=head2 Devel::SelfStubber - generate stubs for a SelfLoading module
+dos2unix
 
 =over 4
 
-=item SYNOPSIS
+=item SEE ALSO 
 
-=item DESCRIPTION
+=item AUTHOR
 
 =back
 
-=head2 Digest - Modules that calculate message digests
+=head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
 
 =over 4
 
@@ -12415,25 +16321,19 @@ perl 5.005, perl 5.004_05, perl 5.004_04, perl 5.004
 
 =item DESCRIPTION
 
-I<binary>, I<hex>, I<base64>
-
-=item OO INTERFACE
+B<test_harness>
 
-$ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
-Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
-$ctx->add( $data, ... ), $ctx->addfile( $io_handle ), $ctx->add_bits(
-$data, $nbits ), $ctx->add_bits( $bitstring ), $ctx->digest,
-$ctx->hexdigest, $ctx->b64digest
+=back
 
-=item Digest speed
+B<pod2man>
 
-=item SEE ALSO
+B<warn_if_old_packlist>
 
-=item AUTHOR
+B<perllocal_install>
 
-=back
+B<uninstall>
 
-=head2 Digest::MD5 - Perl interface to the MD5 Algorithm
+=head2 ExtUtils::Constant - generate XS code to import C header constants
 
 =over 4
 
@@ -12441,51 +16341,73 @@ $ctx->hexdigest, $ctx->b64digest
 
 =item DESCRIPTION
 
+=item USAGE
+
+IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
+
 =item FUNCTIONS
 
-md5($data,...), md5_hex($data,...), md5_base64($data,...)
+=back
 
-=item METHODS
+constant_types
 
-$md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
-$md5->addfile($io_handle), $md5->add_bits($data, $nbits),
-$md5->add_bits($bitstring), $md5->digest, $md5->hexdigest, $md5->b64digest
+XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
 
-=item EXAMPLES
+autoload PACKAGE, VERSION, AUTOLOADER
 
-=item SEE ALSO
+WriteMakefileSnippet
 
-=item COPYRIGHT
+WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
+BREAKOUT_AT, NAMES, C_FH, C_FILE, XS_FH, XS_FILE, SUBNAME, C_SUBNAME
 
-=item AUTHORS
+=over 4
+
+=item AUTHOR
 
 =back
 
-=head2 Digest::base - Digest base class
+=head2 ExtUtils::Constant::Base - base class for ExtUtils::Constant objects
 
 =over 4
 
-=item SYNPOSIS
+=item SYNOPSIS
 
 =item DESCRIPTION
 
-=item SEE ALSO
+=item USAGE
 
 =back
 
-=head2 DirHandle - supply object methods for directory handles
+header
 
-=over 4
+memEQ_clause args_hashref
 
-=item SYNOPSIS
+dump_names arg_hashref, ITEM..
 
-=item DESCRIPTION
+assign arg_hashref, VALUE..
 
-=item NOTES
+return_clause arg_hashref, ITEM
+
+switch_clause arg_hashref, NAMELEN, ITEMHASH, ITEM..
+
+params WHAT
+
+dogfood arg_hashref, ITEM..
+
+normalise_items args, default_type, seen_types, seen_items, ITEM..
+
+C_constant arg_hashref, ITEM.., name, type, value, macro, default, pre,
+post, def_pre, def_post, utf8, weight
+
+=over 4
+
+=item BUGS
+
+=item AUTHOR
 
 =back
 
-=head2 Dumpvalue - provides screen dump of Perl data.
+=head2 ExtUtils::Constant::Utils - helper functions for ExtUtils::Constant
 
 =over 4
 
@@ -12493,25 +16415,22 @@ $md5->add_bits($bitstring), $md5->digest, $md5->hexdigest, $md5->b64digest
 
 =item DESCRIPTION
 
-=over 4
+=item USAGE
 
-=item Creation
+C_stringify NAME
 
-C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
-C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
-C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
-stopDbSignal
+=back
 
-=item Methods
+perl_stringify NAME
 
-dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
-compactDump, veryCompact, set, get
+=over 4
 
-=back
+=item AUTHOR
 
 =back
 
-=head2 DynaLoader - Dynamically load C libraries into Perl code
+=head2 ExtUtils::Constant::XS, ExtUtils::Constant::Base - base class for
+ExtUtils::Constant objects
 
 =over 4
 
@@ -12519,18 +16438,13 @@ compactDump, veryCompact, set, get
 
 =item DESCRIPTION
 
-@dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
-@dl_modules, @dl_shared_objects, dl_error(), $dl_debug, dl_findfile(),
-dl_expandspec(), dl_load_file(), dl_unload_file(), dl_load_flags(),
-dl_find_symbol(), dl_find_symbol_anywhere(), dl_undef_symbols(),
-dl_install_xsub(), bootstrap()
+=item BUGS
 
 =item AUTHOR
 
 =back
 
-=head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
-Perl code
+=head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
 
 =over 4
 
@@ -12538,100 +16452,81 @@ Perl code
 
 =item DESCRIPTION
 
-=over 4
-
-=item Migration from C<DynaLoader>
-
-=item Backward compatible boilerplate
-
-=back
-
-=item Order of initialization: early load()
+=item @EXPORT
 
-=over 4
+=item FUNCTIONS
 
-=item The most hairy case
+xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
+ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
 
-=back
+=item EXAMPLES
 
-=item LIMITATIONS
+=item SEE ALSO
 
 =item AUTHOR
 
 =back
 
-=head2 Encode - character encodings
+=head2 ExtUtils::Install - install files from here to there
 
 =over 4
 
 =item SYNOPSIS
 
-=over 4
-
-=item Table of Contents
-
-=back
-
 =item DESCRIPTION
 
 =over 4
 
-=item TERMINOLOGY
+=item Functions
 
-=back
+B<install>
 
-=item PERL ENCODING API
+=back
 
-$octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
-$octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
-CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
-CHECK]);
+=back
 
-=over 4
+B<install_default> I<DISCOURAGED>
 
-=item Listing available encodings
+B<uninstall>
 
-=item Defining Aliases
+B<pm_to_blib>
 
-=back
+_autosplit
 
-=item Encoding via PerlIO
+=over 4
 
-=item Handling Malformed Data
+=item ENVIRONMENT
 
-B<NOTE:> Not all encoding suppport this feature, I<CHECK> =
-Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1), I<CHECK> =
-Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode (I<CHECK> =
-Encode::FB_PERLQQ), HTML charref mode (I<CHECK> = Encode::FB_HTMLCREF), XML
-charref mode (I<CHECK> = Encode::FB_XMLCREF), The bitmask
+B<PERL_INSTALL_ROOT>
 
-=over 4
+=item AUTHOR
 
-=item Unimplemented fallback schemes
+=item LICENSE
 
 =back
 
-=item Defining Encodings
+=head2 ExtUtils::Installed - Inventory management of installed modules
 
-=item The UTF-8 flag
+=over 4
 
-Goal #1:, Goal #2:, Goal #3:, Goal #4:
+=item SYNOPSIS
 
-=over 4
+=item DESCRIPTION
 
-=item Messing with Perl's Internals
+=item USAGE
 
-is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
+=item FUNCTIONS
 
-=back
+new(), modules(), files(), directories(), directory_tree(), validate(),
+packlist(), version()
 
-=item SEE ALSO
+=item EXAMPLE
 
-=item MAINTAINER
+=item AUTHOR
 
 =back
 
-=head2 Encode::Alias - alias definitions to encodings
+=head2 ExtUtils::Liblist - determine libraries to use and how to use them
 
 =over 4
 
@@ -12639,36 +16534,34 @@ is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
 
 =item DESCRIPTION
 
-As a simple string, As a qr// compiled regular expression, e.g.:, As a code
-reference, e.g.:
+For static extensions, For dynamic extensions at build/link time, For
+dynamic extensions at load time
 
 =over 4
 
-=item Alias overloading
+=item EXTRALIBS
 
-=back
+=item LDLOADLIBS and LD_RUN_PATH
 
-=item SEE ALSO
+=item BSLOADLIBS
 
 =back
 
-=head2 Encode::Byte - Single Byte Encodings
+=item PORTABILITY
 
 =over 4
 
-=item SYNOPSIS
+=item VMS implementation
 
-=item ABSTRACT
+=item Win32 implementation
 
-=item DESCRIPTION
+=back
 
 =item SEE ALSO
 
 =back
 
-=head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
-
-=head2 Encode::CN - China-based Chinese Encodings
+=head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
 
 =over 4
 
@@ -12676,33 +16569,33 @@ reference, e.g.:
 
 =item DESCRIPTION
 
-=item NOTES
+=back
 
-=item BUGS
+=head2 ExtUtils::MM_AIX - AIX specific subclass of ExtUtils::MM_Unix
 
-=item SEE ALSO
+=over 4
 
-=back
+=item SYNOPSIS
 
-=head2 Encode::CN::HZ -- internally used by Encode::CN
+=item DESCRIPTION
 
-=head2 Encode::Config -- internally used by Encode
+=over 4
 
-=head2 Encode::EBCDIC - EBCDIC Encodings
+=item Overridden methods
 
-=over 4
+=back
 
-=item SYNOPSIS
+=back
 
-=item ABSTRACT
+=over 4
 
-=item DESCRIPTION
+=item AUTHOR
 
 =item SEE ALSO
 
 =back
 
-=head2 Encode::Encoding - Encode Implementation Base Class
+=head2 ExtUtils::MM_Any - Platform-agnostic MM methods
 
 =over 4
 
@@ -12710,81 +16603,69 @@ reference, e.g.:
 
 =item DESCRIPTION
 
+=item METHODS
+
 =over 4
 
-=item Methods you should implement
+=item Cross-platform helper methods
 
--E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
--E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
+=back
 
-=item Other methods defined in Encode::Encodings
+=back
 
--E<gt>name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
--E<gt>needs_lines()
+=over 4
 
-=item Example: Encode::ROT13
+=item Targets
 
 =back
 
-=item Why the heck Encode API is different?
-
 =over 4
 
-=item Compiled Encodings
+=item Init methods
 
 =back
 
-=item SEE ALSO
+=over 4
 
-Scheme 1, Scheme 2, Other Schemes
+=item Tools
 
 =back
 
-=head2 Encode::Guess -- Guesses encoding from data
-
 =over 4
 
-=item SYNOPSIS
+=item File::Spec wrappers
 
-=item ABSTRACT
+=back
 
-=item DESCRIPTION
+=over 4
 
-Encode::Guess->set_suspects, Encode::Guess->add_suspects,
-Encode::decode("Guess" ...), Encode::Guess->guess($data),
-guess_encoding($data, [, I<list of suspects>])
+=item Misc
 
-=item CAVEATS
+=back
 
-=item TO DO
+=over 4
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 Encode::JP - Japanese Encodings
+=head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
-
 =item DESCRIPTION
 
-=item Note on ISO-2022-JP(-1)?
-
-=item BUGS
-
-=item SEE ALSO
-
 =back
 
-=head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
+os_flavor
 
-=head2 Encode::JP::JIS7 -- internally used by Encode::JP
+init_linker
 
-=head2 Encode::KR - Korean Encodings
+=head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
 =over 4
 
@@ -12792,149 +16673,147 @@ guess_encoding($data, [, I<list of suspects>])
 
 =item DESCRIPTION
 
-=item BUGS
-
-=item SEE ALSO
+os_flavor
 
 =back
 
-=head2 Encode::KR::2022_KR -- internally used by Encode::KR
+cflags
 
-=head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
+replace_manpage_separator
+
+init_linker
+
+=head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
-
 =item DESCRIPTION
 
-=item BUGS
-
-=item SEE ALSO
-
-=back
+=over 4
 
-=head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
+=item Overridden methods
 
-=over 4
+os_flavor
 
-=item Overview
+=back
 
-=item How does it work?
+=back
 
-=item Line Buffering
+B<replace_manpage_separator>
 
 =over 4
 
-=item How can I tell whether my encoding fully supports PerlIO ?
-
-=back
+=item AUTHOR
 
 =item SEE ALSO
 
 =back
 
-=head2 Encode::Supported -- Encodings supported by Encode
+=head2 ExtUtils::MM_MacOS - once produced Makefiles for MacOS Classic
 
 =over 4
 
+=item SYNOPSIS
+
 =item DESCRIPTION
 
+=back
+
+=head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
+
 =over 4
 
-=item Encoding Names
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =back
 
-=item Supported Encodings
+os_flavor
 
-=over 4
+init_platform, platform_constants
 
-=item Built-in Encodings
+const_cccmd
 
-=item Encode::Unicode -- other Unicode encodings
+static_lib
 
-=item Encode::Byte -- Extended ASCII
+dynamic_lib
 
-ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
-the Cyrillic world, gsm0338 - Hentai Latin 1
+=head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
-=item CJK: Chinese, Japanese, Korean (Multibyte)
+=over 4
 
-Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
-Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
-Encode::JIS2K -- JIS X 0213 encodings via CPAN
+=item SYNOPSIS
 
-=item Miscellaneous encodings
+=item DESCRIPTION
 
-Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
+=item METHODS
+
+init_dist
 
 =back
 
-=item Unsupported encodings
+init_linker
 
-  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
-Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
-System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
-Various Mac encodings, (Mac) Indic encodings
+os_flavor
 
-=item Encoding vs. Charset -- terminology
+=head2 ExtUtils::MM_QNX - QNX specific subclass of ExtUtils::MM_Unix
 
-=item Encoding Classification (by Anton Tagunov and Dan Kogai)
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =over 4
 
-=item Microsoft-related naming mess
+=item Overridden methods
 
-KS_C_5601-1987, GB2312, Big5, Shift_JIS
+=back
 
 =back
 
-=item Glossary
+=over 4
 
-character repertoire, coded character set (CCS), character encoding scheme
-(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
-UTF-16
+=item AUTHOR
 
-=item See Also
+=item SEE ALSO
 
-=item References
+=back
 
-ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
-RFC, UC, Unicode Glossary
+=head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
 
 =over 4
 
-=item Other Notable Sites
+=item SYNOPSIS
 
-czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
-"Introduction to i18n"
+=item DESCRIPTION
 
-=item Offline sources
+=over 4
 
-C<CJKV Information Processing> by Ken Lunde
+=item Overridden methods
+
+os_flavor
 
 =back
 
 =back
 
-=head2 Encode::Symbol - Symbol Encodings
+B<replace_manpage_separator>
 
 =over 4
 
-=item SYNOPSIS
-
-=item ABSTRACT
-
-=item DESCRIPTION
+=item AUTHOR
 
 =item SEE ALSO
 
 =back
 
-=head2 Encode::TW - Taiwan-based Chinese Encodings
+=head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
 
 =over 4
 
@@ -12942,424 +16821,393 @@ C<CJKV Information Processing> by Ken Lunde
 
 =item DESCRIPTION
 
-=item NOTES
+=item METHODS
 
-=item BUGS
+=back
 
-=item SEE ALSO
+=over 4
+
+=item Methods
+
+os_flavor
 
 =back
 
-=head2 Encode::Unicode -- Various Unicode Transformation Formats
+c_o (o)
 
-=over 4
+cflags (o)
 
-=item SYNOPSIS
+const_cccmd (o)
 
-=item ABSTRACT
+const_config (o)
 
-L<http://www.unicode.org/glossary/> says:, Quick Reference
+const_loadlibs (o)
 
-=item Size, Endianness, and BOM
+constants (o)
 
-=over 4
+depend (o)
 
-=item by size
+init_DEST
 
-=item by endianness
+init_dist
 
-BOM as integer when fetched in network byte order
+dist (o)
 
-=back
+dist_basics (o)
 
-=item Surrogate Pairs
+dist_ci (o)
 
-=item Error Checking
+dist_core (o)
 
-=item SEE ALSO
+B<dist_target>
 
-=back
+B<tardist_target>
 
-=head2 Encode::Unicode::UTF7 -- UTF-7 encoding
+B<zipdist_target>
 
-=over 4
+B<tarfile_target>
 
-=item SYNOPSIS
+zipfile_target
 
-=item ABSTRACT
+uutardist_target
 
-=item In Practice
+shdist_target
 
-=item SEE ALSO
+dlsyms (o)
 
-=back
+dynamic_bs (o)
 
-=head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
-encodings
+dynamic_lib (o)
 
-=over 4
+exescan
 
-=item SYNOPSIS
+extliblist
 
-=item DESCRIPTION
+find_perl
 
-As a simple string, As a qr// compiled regular expression, e.g.:, As a code
-reference, e.g.:
+fixin
 
-=over 4
+force (o)
 
-=item Alias overloading
+guess_name
 
-=back
+has_link_code
 
-=item SEE ALSO
+init_dirscan
 
-=back
+init_DIRFILESEP
 
-=head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
-Internally used by Encode::??::ISO_2022_*
+init_main
 
-=head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
-Encode::CN
+init_others
 
-=head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
-Encode
+init_linker
 
-=head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
-Implementation Base Class
+init_lib2arch
 
-=over 4
+init_PERL
 
-=item SYNOPSIS
+init_platform, platform_constants
 
-=item DESCRIPTION
+init_PERM
 
-=over 4
+init_xs
 
-=item Methods you should implement
+install (o)
 
--E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
--E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
+installbin (o)
 
-=item Other methods defined in Encode::Encodings
+linkext (o)
 
--E<gt>name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
--E<gt>needs_lines()
+lsdir
 
-=item Example: Encode::ROT13
+macro (o)
 
-=back
+makeaperl (o)
 
-=item Why the heck Encode API is different?
+makefile (o)
 
-=over 4
+maybe_command
 
-=item Compiled Encodings
+needs_linking (o)
 
-=back
+nicetext
 
-=item SEE ALSO
+parse_abstract
 
-Scheme 1, Scheme 2, Other Schemes
+parse_version
 
-=back
+pasthru (o)
 
-=head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
-data
+perl_script
 
-=over 4
+perldepend (o)
 
-=item SYNOPSIS
+perm_rw (o)
 
-=item ABSTRACT
+perm_rwx (o)
 
-=item DESCRIPTION
+pm_to_blib
 
-Encode::Guess->set_suspects, Encode::Guess->add_suspects,
-Encode::decode("Guess" ...), Encode::Guess->guess($data),
-guess_encoding($data, [, I<list of suspects>])
+post_constants (o)
 
-=item CAVEATS
+post_initialize (o)
 
-=item TO DO
+postamble (o)
 
-=item SEE ALSO
+ppd
 
-=back
+prefixify
 
-=head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
-Encode::JP::2022_JP*
+processPL (o)
 
-=head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
-by Encode::JP
+quote_paren
 
-=head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
-used by Encode::KR
+replace_manpage_separator
 
-=head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
-and 'Q' header encoding
+cd
 
-=over 4
+oneliner
 
-=item SYNOPSIS
+quote_literal
 
-=item ABSTRACT
+escape_newlines
 
-=item DESCRIPTION
+max_exec_len
 
-=item BUGS
+static (o)
 
-=item SEE ALSO
+static_lib (o)
 
-=back
+staticmake (o)
 
-=head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
-on Encode and PerlIO
+subdir_x (o)
 
-=over 4
+subdirs (o)
 
-=item Overview
+test (o)
 
-=item How does it work?
+test_via_harness (override)
 
-=item Line Buffering
+test_via_script (override)
 
-=over 4
+tools_other (o)
 
-=item How can I tell whether my encoding fully supports PerlIO ?
+tool_xsubpp (o)
 
-=back
+all_target
 
-=item SEE ALSO
+top_targets (o)
 
-=back
+writedoc
 
-=head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
-supported by Encode
+xs_c (o)
 
-=over 4
+xs_cpp (o)
 
-=item DESCRIPTION
+xs_o (o)
 
 =over 4
 
-=item Encoding Names
+=item SEE ALSO
 
 =back
 
-=item Supported Encodings
+=head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
 =over 4
 
-=item Built-in Encodings
-
-=item Encode::Unicode -- other Unicode encodings
-
-=item Encode::Byte -- Extended ASCII
+=item SYNOPSIS
 
-ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
-the Cyrillic world, gsm0338 - Hentai Latin 1
+=item DESCRIPTION
 
-=item CJK: Chinese, Japanese, Korean (Multibyte)
+=over 4
 
-Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
-Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
-Encode::JIS2K -- JIS X 0213 encodings via CPAN
+=item Methods always loaded
 
-=item Miscellaneous encodings
+wraplist
 
-Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
+=back
 
 =back
 
-=item Unsupported encodings
+=over 4
 
-  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
-Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
-System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
-Various Mac encodings, (Mac) Indic encodings
+=item Methods
 
-=item Encoding vs. Charset -- terminology
+guess_name (override)
 
-=item Encoding Classification (by Anton Tagunov and Dan Kogai)
+=back
 
-=over 4
+find_perl (override)
 
-=item Microsoft-related naming mess
+maybe_command (override)
 
-KS_C_5601-1987, GB2312, Big5, Shift_JIS
+pasthru (override)
 
-=back
+pm_to_blib (override)
 
-=item Glossary
+perl_script (override)
 
-character repertoire, coded character set (CCS), character encoding scheme
-(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
-UTF-16
+replace_manpage_separator
 
-=item See Also
+init_DEST
 
-=item References
+init_DIRFILESEP
 
-ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
-RFC, UC, Unicode Glossary
+init_main (override)
 
-=over 4
+init_others (override)
 
-=item Other Notable Sites
+init_platform (override)
 
-czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
-"Introduction to i18n"
+platform_constants
 
-=item Offline sources
+init_VERSION (override)
 
-C<CJKV Information Processing> by Ken Lunde
+constants (override)
 
-=back
+special_targets
 
-=back
+cflags (override)
 
-=head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
-encoding
+const_cccmd (override)
 
-=over 4
+tools_other (override)
 
-=item SYNOPSIS
+init_dist (override)
 
-=item ABSTRACT
+c_o (override)
 
-=item In Practice
+xs_c (override)
 
-=item SEE ALSO
+xs_o (override)
 
-=back
+dlsyms (override)
 
-=head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
+dynamic_lib (override)
 
-=over 4
+static_lib (override)
 
-=item SYNOPSIS
+extra_clean_files
 
-=item ABSTRACT
+zipfile_target, tarfile_target, shdist_target
 
-=item Description
+install (override)
 
-=over 4
+perldepend (override)
 
-=item Predefined Methods
+makeaperl (override)
 
-$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
-$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
-$e-E<gt>bytes([$encoding])
+nicetext (override)
 
-=item Example: base64 transcoder
+prefixify (override)
 
-=item Operator Overloading
+cd
 
-=back
+oneliner
 
-=item SEE ALSO
+B<echo>
 
-=back
+quote_literal
 
-=head2 Encodencoding, encoding - allows you to write your script in
-non-ascii or non-utf8
+escape_newlines
 
-=over 4
+max_exec_len
 
-=item SYNOPSIS
+init_linker
 
-=item ABSTRACT
+eliminate_macros
 
-=over 4
+fixpath
 
-=item Literal Conversions
+os_flavor
 
-=item PerlIO layers for C<STD(IN|OUT)>
+=over 4
 
-=item Implicit upgrading for byte strings
+=item AUTHOR
 
 =back
 
-=item FEATURES THAT REQUIRE 5.8.1
-
-"NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
+=head2 ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix
 
-=item USAGE
+=over 4
 
-use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
-I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
+=item SYNOPSIS
 
-=item The Filter Option
+=item DESCRIPTION
 
 =over 4
 
-=item Filter-related changes at Encode version 1.87
+=item Overridden methods
 
 =back
 
-=item CAVEATS
+=back
 
 =over 4
 
-=item NOT SCOPED
+=item AUTHOR
 
-=item DO NOT MIX MULTIPLE ENCODINGS
+=item SEE ALSO
 
-=item tr/// with ranges
+=back
 
-Legend of characters above
+=head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
-=back
+=over 4
 
-=item EXAMPLE - Greekperl
+=item SYNOPSIS
 
-=item KNOWN PROBLEMS
+=item DESCRIPTION
 
-literals in regex that are longer than 127 bytes, EBCDIC, format
+=back
 
 =over 4
 
-=item The Logic of :locale
+=item Overridden methods
+
+B<dlsyms>
 
 =back
 
-=item HISTORY
+replace_manpage_separator
 
-=item SEE ALSO
+B<maybe_command>
 
-=back
+B<init_DIRFILESEP>
 
-=head2 Encoder, Encode::Encoder -- Object Oriented Encoder
+B<init_others>
 
-=over 4
+init_platform, platform_constants
 
-=item SYNOPSIS
+special_targets
 
-=item ABSTRACT
+static_lib
 
-=item Description
+dynamic_lib
 
-=over 4
+extra_clean_files
 
-=item Predefined Methods
+init_linker
 
-$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
-$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
-$e-E<gt>bytes([$encoding])
+perl_script
 
-=item Example: base64 transcoder
+xs_o
 
-=item Operator Overloading
+pasthru
 
-=back
+oneliner
 
-=item SEE ALSO
+cd
 
-=back
+max_exec_len
 
-=head2 English - use nice English (or awk) names for ugly punctuation
-variables
+os_flavor
+
+=head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
 
 =over 4
 
@@ -13367,26 +17215,31 @@ variables
 
 =item DESCRIPTION
 
-=item PERFORMANCE
+=over 4
+
+=item Overridden methods
+
+xs_c
 
 =back
 
-=head2 Env - perl module that imports environment variables as scalars or
-arrays
+=back
 
-=over 4
+xs_cpp
 
-=item SYNOPSIS
+xs_o
 
-=item DESCRIPTION
+max_exec_len
 
-=item LIMITATIONS
+os_flavor
+
+=over 4
 
 =item AUTHOR
 
 =back
 
-=head2 Errno - System errno constants
+=head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
 
 =over 4
 
@@ -13394,15 +17247,9 @@ arrays
 
 =item DESCRIPTION
 
-=item CAVEATS
-
-=item AUTHOR
-
-=item COPYRIGHT
-
 =back
 
-=head2 Exporter - Implements default import method for modules
+=head2 ExtUtils::MakeMaker - Create a module Makefile
 
 =over 4
 
@@ -13412,52 +17259,90 @@ arrays
 
 =over 4
 
-=item How to Export
+=item How To Write A Makefile.PL
 
-=item Selecting What To Export
+=item Default Makefile Behaviour
 
-=item How to Import
+=item make test
 
-C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
+=item make testdb
 
-=back
+=item make install
 
-=item Advanced features
+=item PREFIX and LIB attribute
 
-=over 4
+=item AFS users
 
-=item Specialised Import Lists
+=item Static Linking of a new Perl Binary
 
-=item Exporting without using Exporter's import method
+=item Determination of Perl Library and Installation Locations
 
-=item Exporting without inheriting from Exporter
+=item Which architecture dependent directory?
 
-=item Module Version Checking
+=item Using Attributes and Parameters
 
-=item Managing Unknown Symbols
+ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
+CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
+EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
+FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
+INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
+INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
+INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLSITESCRIPT,
+INSTALLVENDORARCH, INSTALLVENDORBIN, INSTALLVENDORLIB,
+INSTALLVENDORMAN1DIR, INSTALLVENDORMAN3DIR, INSTALLVENDORSCRIPT,
+INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR, INST_MAN3DIR, INST_SCRIPT,
+LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS, LINKTYPE, MAKEAPERL,
+MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
+NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT, OPTIMIZE, PERL,
+PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERLPREFIX,
+PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW, PERM_RWX, PL_FILES, PM, PMLIBDIRS,
+PM_FILTER, POLLUTE, PPM_INSTALL_EXEC, PPM_INSTALL_SCRIPT, PREFIX,
+PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT, PRINT_PREREQ, SITEPREFIX, SIGN,
+SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION, VERSION_FROM, VERSION_SYM,
+XS, XSOPT, XSPROTOARG, XS_VERSION
 
-=item Tag Handling Utility Functions
+=item Additional lowercase attributes
 
-=item Generating combined tags
+clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
+test, tool_autosplit
 
-=item C<AUTOLOAD>ed Constants
+=item Overriding MakeMaker Methods
 
-=back
+=item The End Of Cargo Cult Programming
+
+C<< MAN3PODS => ' ' >>
+
+=item Hintsfile support
+
+=item Distribution Support
+
+   make distcheck,    make skipcheck,   make distclean,    make manifest, 
+  make distdir,   make disttest,    make tardist,    make dist,    make
+uutardist,    make shdist,    make zipdist,    make ci
+
+=item Module Meta-Data
+
+=item Disabling an extension
+
+=item Other Handy Functions
+
+prompt
 
 =back
 
-=head2 Exporter::Heavy - Exporter guts
+=item ENVIRONMENT
 
-=over 4
+PERL_MM_OPT, PERL_MM_USE_DEFAULT, PERL_CORE
 
-=item SYNOPSIS
+=item SEE ALSO
 
-=item DESCRIPTION
+=item AUTHORS
+
+=item LICENSE
 
 =back
 
-=head2 ExtUtils::Command - utilities to replace common UNIX commands in
-Makefiles etc.
+=head2 ExtUtils::MakeMaker::Config - Wrapper around Config.pm
 
 =over 4
 
@@ -13467,39 +17352,48 @@ Makefiles etc.
 
 =back
 
-cat
+=head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
+MakeMaker
 
-eqtime src dst
+=over 4
 
-rm_rf files...
+=item DESCRIPTION
 
-rm_f files...
+=over 4
 
-touch files ..
+=item Module Installation
 
-mv source... destination
+How do I keep from installing man pages?, How do I use a module without
+installing it?
 
-cp source... destination
+=item Philosophy and History
 
-chmod mode files..
+Why not just use <insert other build config tool here>?, What is
+Module::Build and how does it relate to MakeMaker?, pure perl. no make, no
+shell commands, easier to customize, cleaner internals, less cruft
 
-mkpath directory..
+=item Module Writing
 
-test_f file
+How do I keep my $VERSION up to date without resetting it manually?, What's
+this F<META.yml> thing and how did it get in my F<MANIFEST>?!
 
-dos2unix
+=item XS
 
-=over 4
+How to I prevent "object version X.XX does not match bootstrap parameter
+Y.YY" errors?, How do I make two or more XS files coexist in the same
+directory?
 
-=item BUGS
+=back
 
-=item SEE ALSO 
+=item PATCHING
 
 =item AUTHOR
 
+=item SEE ALSO
+
 =back
 
-=head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
+=head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
 
 =over 4
 
@@ -13507,19 +17401,22 @@ dos2unix
 
 =item DESCRIPTION
 
-B<test_harness>
+=over 4
 
-=back
+=item The Mantra
 
-B<pod2man>
+=item The Layout
 
-B<warn_if_old_packlist>
+Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
+bin/
 
-B<perllocal_install>
+=back
 
-B<uninstall>
+=item SEE ALSO
 
-=head2 ExtUtils::Constant - generate XS code to import C header constants
+=back
+
+=head2 ExtUtils::MakeMaker::bytes - Version-agnostic bytes.pm
 
 =over 4
 
@@ -13527,68 +17424,74 @@ B<uninstall>
 
 =item DESCRIPTION
 
-=item USAGE
+=back
 
-IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
+=head2 ExtUtils::MakeMaker::vmsish - Platform-agnostic vmsish.pm
 
-=item FUNCTIONS
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =back
 
-C_stringify NAME
+=head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
 
-perl_stringify NAME
+=over 4
 
-constant_types
+=item SYNOPSIS
 
-memEQ_clause NAME, CHECKED_AT, INDENT
+=item DESCRIPTION
 
-assign INDENT, TYPE, PRE, POST, VALUE..
+=over 4
 
-return_clause
+=item Functions
 
-switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
+mkmanifest
 
-params WHAT
+=back
 
-dump_names
+=back
 
-dogfood
+manifind
 
-C_constant, name, type, value, macro, default, pre, post, def_pre =item
-def_post, utf8
+manicheck
 
-XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
+filecheck
 
-autoload PACKAGE, VERSION, AUTOLOADER
+fullcheck
 
-WriteMakefileSnippet
+skipcheck
 
-WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
-BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
+maniread
+
+manicopy
+
+maniadd
 
 =over 4
 
-=item AUTHOR
+=item MANIFEST
 
-=back
+=item MANIFEST.SKIP
 
-=head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
+=item EXPORT_OK
 
-=over 4
+=item GLOBAL VARIABLES
 
-=item SYNOPSIS
+=back
 
-=item DESCRIPTION
+=over 4
 
-=item @EXPORT
+=item DIAGNOSTICS
 
-=item FUNCTIONS
+C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
+C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
 
-xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
-ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
+=item ENVIRONMENT
 
-=item EXAMPLES
+B<PERL_MM_MANIFEST_DEBUG>
 
 =item SEE ALSO
 
@@ -13596,7 +17499,7 @@ ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
 
 =back
 
-=head2 ExtUtils::Install - install files from here to there
+=head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
 
 =over 4
 
@@ -13604,37 +17507,38 @@ ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
 
 =item DESCRIPTION
 
-=over 4
-
-=item Functions
-
-B<install>
+=item SEE ALSO
 
 =back
 
-=back
+=head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
 
-B<install_default> I<DISCOURAGED>
+=over 4
 
-B<uninstall>
+=item SYNOPSIS
 
-B<pm_to_blib>
+=item DESCRIPTION
 
-_autosplit
+=back
+
+=head2 ExtUtils::Mksymlists - write linker options files for dynamic
+extension
 
 =over 4
 
-=item ENVIRONMENT
+=item SYNOPSIS
 
-B<PERL_INSTALL_ROOT>
+=item DESCRIPTION
+
+DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
 
 =item AUTHOR
 
-=item LICENSE
+=item REVISION
 
 =back
 
-=head2 ExtUtils::Installed - Inventory management of installed modules
+=head2 ExtUtils::Packlist - manage .packlist files
 
 =over 4
 
@@ -13646,8 +17550,7 @@ B<PERL_INSTALL_ROOT>
 
 =item FUNCTIONS
 
-new(), modules(), files(), directories(), directory_tree(), validate(),
-packlist(), version()
+new(), read(), write(), validate(), packlist_file()
 
 =item EXAMPLE
 
@@ -13655,42 +17558,51 @@ packlist(), version()
 
 =back
 
-=head2 ExtUtils::Liblist - determine libraries to use and how to use them
+=head2 ExtUtils::ParseXS - converts Perl XS code into C code
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
+=item EXPORT
 
-For static extensions, For dynamic extensions at build/link time, For
-dynamic extensions at load time
+=item FUNCTIONS
 
-=over 4
+process_xs(), B<C++>, B<hiertype>, B<except>, B<typemap>, B<prototypes>,
+B<versioncheck>, B<linenumbers>, B<optimize>, B<inout>, B<argtypes>, B<s>,
+errors()
 
-=item EXTRALIBS
+=item AUTHOR
 
-=item LDLOADLIBS and LD_RUN_PATH
+=item COPYRIGHT
 
-=item BSLOADLIBS
+=item SEE ALSO
 
 =back
 
-=item PORTABILITY
+=head2 ExtUtils::testlib - add blib/* directories to @INC
 
 =over 4
 
-=item VMS implementation
+=item SYNOPSIS
 
-=item Win32 implementation
+=item DESCRIPTION
 
 =back
 
-=item SEE ALSO
+=head2 Fatal - replace functions with equivalents which succeed or die
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item AUTHOR
 
 =back
 
-=head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
+=head2 Fcntl - load the C Fcntl.h defines
 
 =over 4
 
@@ -13698,9 +17610,13 @@ dynamic extensions at load time
 
 =item DESCRIPTION
 
+=item NOTE
+
+=item EXPORTED SYMBOLS
+
 =back
 
-=head2 ExtUtils::MM_Any - Platform-agnostic MM methods
+=head2 Fcntl2 - load the C Fcntl2.h defines
 
 =over 4
 
@@ -13708,86 +17624,90 @@ dynamic extensions at load time
 
 =item DESCRIPTION
 
-=item Inherently Cross-Platform Methods
+=item NOTE
 
-installvars
+=item EXPORTED SYMBOLS
 
 =back
 
-os_flavor_is
-
-blibdirs_target (o)
+=head2 File::Basename - Parse file paths into directory, filename and
+suffix.
 
 =over 4
 
-=item File::Spec wrappers
+=item SYNOPSIS
 
-catfile
+=item DESCRIPTION
 
 =back
 
-=over 4
+C<fileparse>
+
+C<basename>
 
-=item Thought To Be Cross-Platform Methods
+C<dirname>
 
-B<split_command>
+C<fileparse_set_fstype>
+
+=over 4
+
+=item SEE ALSO
 
 =back
 
-B<echo>
+=head2 File::CheckTree, validate - run many filetest checks on a tree
 
-init_VERSION
+=over 4
 
-wraplist
+=item SYNOPSIS
+
+=item DESCRIPTION
 
-manifypods
+=item AUTHOR
 
-manifypods_target
+=item HISTORY
 
-makemakerdflt_target
+=back
 
-special_targets
+=head2 File::Compare - Compare files or filehandles
 
-POD2MAN_macro
+=over 4
 
-test_via_harness
+=item SYNOPSIS
 
-test_via_script
+=item DESCRIPTION
 
-libscan
+=item RETURN
 
-tool_autosplit
+=item AUTHOR
 
-all_target
+=back
 
-metafile_target
+=head2 File::Copy - Copy files or filehandles
 
-signature_target
+=over 4
 
-metafile_addtomanifest_target
+=item SYNOPSIS
 
-signature_addtomanifest_target
+=item DESCRIPTION
 
 =over 4
 
-=item Abstract methods
+=item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
 
-oneliner, B<quote_literal>, B<escape_newlines>, max_exec_len,
-B<init_others>, init_DIRFILESEP, init_linker, init_platform,
-platform_constants
+rmscopy($from,$to[,$date_flag])
 
 =back
 
-os_flavor
+=item RETURN
 
-=over 4
+=item NOTES
 
 =item AUTHOR
 
 =back
 
-=head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 File::DosGlob - DOS like globbing and then some
 
 =over 4
 
@@ -13795,14 +17715,21 @@ ExtUtils::MakeMaker
 
 =item DESCRIPTION
 
-=back
+=item NOTES
 
-os_flavor (o)
+=item EXPORTS (by request only)
 
-init_linker
+=item BUGS
 
-=head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=item AUTHOR
+
+=item HISTORY
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Find - Traverse a directory tree.
 
 =over 4
 
@@ -13810,17 +17737,39 @@ ExtUtils::MakeMaker
 
 =item DESCRIPTION
 
-os_flavor (o)
+B<find>, B<finddepth>
+
+=over 4
+
+=item %options
+
+C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
+C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
+C<untaint>, C<untaint_pattern>, C<untaint_skip>
+
+=item The wanted function
+
+C<$File::Find::dir> is the current directory name,, C<$_> is the current
+filename within that directory, C<$File::Find::name> is the complete
+pathname to the file
 
 =back
 
-cflags (o)
+=item WARNINGS
 
-replace_manpage_separator (o)
+=item CAVEAT
 
-init_linker
+$dont_use_nlink, symlinks
 
-=head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
+=item NOTES
+
+=item BUGS AND CAVEATS
+
+=item HISTORY
+
+=back
+
+=head2 File::Glob - Perl extension for BSD glob routine
 
 =over 4
 
@@ -13830,26 +17779,29 @@ init_linker
 
 =over 4
 
-=item Overridden methods
+=item META CHARACTERS
 
-os_flavor
+=item POSIX FLAGS
 
-=back
+C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
+C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
+C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
 
 =back
 
-B<replace_manpage_separator>
+=item DIAGNOSTICS
 
-=over 4
+C<GLOB_NOSPACE>, C<GLOB_ABEND>
 
-=item AUTHOR
+=item NOTES
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 File::GlobMapper - Extend File Glob to Allow Input and Output Files
 
 =over 4
 
@@ -13857,50 +17809,47 @@ ExtUtils::MakeMaker
 
 =item DESCRIPTION
 
-=back
-
-maybe_command
-
-guess_name
+This code is a work in progress, There are known bugs, The interface
+defined here is tentative, There are portability issues, Do not use in
+production code, Consider yourself warned!
 
-macify
+=over 4
 
-patternify
+=item Behind The Scenes
 
-init_main
+=item Limitations
 
-init_others
+=item Input File Glob
 
-init_platform, platform_constants
+B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
 
-init_dirscan
+=item Output File Glob
 
-init_VERSION (o)
+"*", #1
 
-special_targets (o)
+=item Returned Data
 
-static (o)
+=back
 
-dlsyms (o)
+=item EXAMPLES
 
-dynamic (o)
+=over 4
 
-clean (o)
+=item A Rename script
 
-clean_subdirs_target
+=item A few example globmaps
 
-realclean (o)
+=back
 
-realclean_subdirs_target
+=item SEE ALSO
 
-rulez (o)
+=item AUTHOR
 
-processPL (o)
+=item COPYRIGHT AND LICENSE
 
-os_flavor
+=back
 
-=head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 File::Path - create or remove directory trees
 
 =over 4
 
@@ -13908,20 +17857,13 @@ ExtUtils::MakeMaker
 
 =item DESCRIPTION
 
-=back
-
-os_flavor
-
-init_platform (o), platform_constants
-
-const_cccmd (o)
+=item DIAGNOSTICS
 
-static_lib (o)
+=item AUTHORS
 
-dynamic_lib (o)
+=back
 
-=head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 File::Spec - portably perform operations on file names
 
 =over 4
 
@@ -13931,15 +17873,19 @@ ExtUtils::MakeMaker
 
 =item METHODS
 
-init_dist (o)
+canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
+no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
+splitdir, catpath(), abs2rel, rel2abs()
+
+=item SEE ALSO
 
-=back
+=item AUTHOR
 
-init_linker
+=item COPYRIGHT
 
-os_flavor
+=back
 
-=head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
+=head2 File::Spec::Cygwin - methods for Cygwin file specs
 
 =over 4
 
@@ -13947,27 +17893,43 @@ os_flavor
 
 =item DESCRIPTION
 
-=over 4
+=back
 
-=item Overridden methods
+canonpath
 
-os_flavor
+file_name_is_absolute
+
+tmpdir (override)
+
+=over 4
+
+=item COPYRIGHT
 
 =back
 
+=head2 File::Spec::Epoc - methods for Epoc file specs
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
 =back
 
-B<replace_manpage_separator>
+canonpath()
 
 =over 4
 
 =item AUTHOR
 
+=item COPYRIGHT
+
 =item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
+=head2 File::Spec::Functions - portably perform operations on file names
 
 =over 4
 
@@ -13975,355 +17937,378 @@ B<replace_manpage_separator>
 
 =item DESCRIPTION
 
-=item METHODS
+=over 4
 
-=back
+=item Exports
 
-=over 4
+=back
 
-=item Methods
+=item COPYRIGHT
 
-os_flavor (o)
+=item SEE ALSO
 
 =back
 
-c_o (o)
+=head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
 
-cflags (o)
+=over 4
 
-clean (o)
+=item SYNOPSIS
 
-clean_subdirs_target
+=item DESCRIPTION
 
-const_cccmd (o)
+=item METHODS
 
-const_config (o)
+canonpath
 
-const_loadlibs (o)
+=back
 
-constants (o)
+catdir()
 
-depend (o)
+catfile
 
-dir_target B<DEPRECATED>
+curdir
 
-init_DEST
+devnull
 
-init_dist
+rootdir
 
-dist (o)
+tmpdir
 
-dist_basics (o)
+updir
 
-dist_ci (o)
+file_name_is_absolute
 
-dist_core (o)
+path
 
-B<dist_target>
+splitpath
 
-B<tardist_target>
+splitdir
 
-B<zipdist_target>
+catpath
 
-B<tarfile_target>
+abs2rel
 
-zipfile_target
+rel2abs
 
-uutardist_target
+=over 4
 
-shdist_target
+=item AUTHORS
 
-distdir
+=item COPYRIGHT
 
-dist_test
+=item SEE ALSO
 
-dlsyms (o)
+=back
 
-dynamic (o)
+=head2 File::Spec::OS2 - methods for OS/2 file specs
 
-dynamic_bs (o)
+=over 4
 
-dynamic_lib (o)
+=item SYNOPSIS
 
-exescan
+=item DESCRIPTION
 
-extliblist
+tmpdir, splitpath
 
-find_perl
+=item COPYRIGHT
+
+=back
 
-find_tests
+=head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
+modules
 
 =over 4
 
-=item Methods to actually produce chunks of text for the Makefile
+=item SYNOPSIS
 
-fixin
+=item DESCRIPTION
 
-=back
+=item METHODS
 
-force (o)
+canonpath()
 
-guess_name
+=back
 
-has_link_code
+catdir()
 
-init_dirscan
+catfile
 
-init_DIRFILESEP
+curdir
 
-init_main
+devnull
 
-init_others
+rootdir
 
-init_INST
+tmpdir
 
-init_INSTALL
+updir
 
-init_linker
+no_upwards
 
-init_lib2arch
+case_tolerant
 
-init_PERL
+file_name_is_absolute
 
-init_platform (o), platform_constants (o)
+path
 
-init_PERM
+join
 
-init_xs
+splitpath
 
-install (o)
+splitdir
 
-installbin (o)
+catpath()
 
-linkext (o)
+abs2rel
 
-lsdir
+rel2abs()
 
-macro (o)
+=over 4
 
-makeaperl (o)
+=item COPYRIGHT
 
-makefile (o)
+=item SEE ALSO
 
-maybe_command
+=back
 
-needs_linking (o)
+=head2 File::Spec::VMS - methods for VMS file specs
 
-nicetext
+=over 4
 
-parse_abstract
+=item SYNOPSIS
 
-parse_version
+=item DESCRIPTION
 
-pasthru (o)
+canonpath (override)
 
-perl_script
+=back
 
-perldepend (o)
+catdir (override)
 
-perm_rw (o)
+catfile (override)
 
-perm_rwx (o)
+curdir (override)
 
-pm_to_blib
+devnull (override)
 
-post_constants (o)
+rootdir (override)
 
-post_initialize (o)
+tmpdir (override)
 
-postamble (o)
+updir (override)
 
-ppd
+case_tolerant (override)
 
-prefixify
+path (override)
 
-processPL (o)
+file_name_is_absolute (override)
 
-quote_paren
+splitpath (override)
 
-realclean (o)
+splitdir (override)
 
-realclean_subdirs_target
+catpath (override)
 
-replace_manpage_separator
+abs2rel (override)
 
-oneliner (o)
+rel2abs (override)
 
-quote_literal
+=over 4
 
-escape_newlines
+=item COPYRIGHT
 
-max_exec_len
+=item SEE ALSO
 
-static (o)
+=back
 
-static_lib (o)
+=head2 File::Spec::Win32 - methods for Win32 file specs
 
-staticmake (o)
+=over 4
 
-subdir_x (o)
+=item SYNOPSIS
 
-subdirs (o)
+=item DESCRIPTION
 
-test (o)
+devnull
 
-test_via_harness (override)
+=back
 
-test_via_script (override)
+tmpdir
 
-tools_other (o)
+catfile
 
-tool_xsubpp (o)
+canonpath
 
-all_target
+splitpath
 
-top_targets (o)
+splitdir
 
-writedoc
+catpath
 
-xs_c (o)
+=over 4
 
-xs_cpp (o)
+=item Note For File::Spec::Win32 Maintainers
 
-xs_o (o)
+=back
 
 =over 4
 
+=item COPYRIGHT
+
 =item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 File::Temp - return name and handle of a temporary file safely
 
 =over 4
 
+=item PORTABILITY
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
+=back
+
 =over 4
 
-=item Methods always loaded
+=item OBJECT-ORIENTED INTERFACE
 
-wraplist
+B<new>
 
 =back
 
+B<filename>
+
+B<unlink_on_destroy>
+
+B<DESTROY>
+
+=over 4
+
+=item FUNCTIONS
+
+B<tempfile>
+
 =back
 
+B<tempdir>
+
 =over 4
 
-=item Methods
+=item MKTEMP FUNCTIONS
 
-guess_name (override)
+B<mkstemp>
 
 =back
 
-find_perl (override)
+B<mkstemps>
 
-maybe_command (override)
+B<mkdtemp>
 
-perl_script (override)
+B<mktemp>
 
-replace_manpage_separator
+=over 4
 
-init_DEST
+=item POSIX FUNCTIONS
 
-init_DIRFILESEP
+B<tmpnam>
 
-init_main (override)
+=back
 
-init_others (override)
+B<tmpfile>
 
-init_platform (override)
+=over 4
 
-platform_constants
+=item ADDITIONAL FUNCTIONS
 
-init_VERSION (override)
+B<tempnam>
 
-constants (override)
+=back
 
-special_targets
+=over 4
 
-cflags (override)
+=item UTILITY FUNCTIONS
+
+B<unlink0>
 
-const_cccmd (override)
+=back
 
-tool_sxubpp (override)
+B<cmpstat>
 
-tools_other (override)
+B<unlink1>
 
-init_dist (override)
+B<cleanup>
 
-c_o (override)
+=over 4
 
-xs_c (override)
+=item PACKAGE VARIABLES
 
-xs_o (override)
+B<safe_level>, STANDARD, MEDIUM, HIGH
 
-dlsyms (override)
+=back
 
-dynamic_lib (override)
+TopSystemUID
 
-dynamic_bs (override)
+B<$KEEP_ALL>, B<$DEBUG>
 
-static_lib (override)
+=over 4
 
-processPL (override)
+=item WARNING
 
-installbin (override)
+=over 4
 
-subdir_x (override)
+=item Temporary files and NFS
 
-clean (override)
+=item Forking
 
-clean_subdirs_target
+=item BINMODE
 
-realclean (override)
+=back
 
-zipfile_target (o), tarfile_target (o), shdist_target (o)
+=item HISTORY
 
-dist_test (override)
+=item SEE ALSO
 
-install (override)
+=item AUTHOR
 
-perldepend (override)
+=back
 
-makefile (override)
+=head2 File::stat - by-name interface to Perl's built-in stat() functions
 
-find_tests (override)
+=over 4
 
-test (override)
+=item SYNOPSIS
 
-makeaperl (override)
+=item DESCRIPTION
 
-nicetext (override)
+=item BUGS
 
-prefixify (override)
+=item NOTE
 
-oneliner (o)
+=item AUTHOR
 
-B<echo> (o)
+=back
 
-quote_literal
+=head2 FileCache - keep more files open than the system permits
 
-escape_newlines
+=over 4
 
-max_exec_len
+=item SYNOPSIS
 
-init_linker (o)
+=item DESCRIPTION
 
-eliminate_macros
+cacheout EXPR, cacheout MODE, EXPR
 
-fixpath
+=item CAVEATS
 
-os_flavor
+=item BUGS
 
-blibdirs_target (override)
+=back
 
-=head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 FileHandle - supply object methods for filehandles
 
 =over 4
 
@@ -14331,51 +18316,58 @@ ExtUtils::MakeMaker
 
 =item DESCRIPTION
 
-=back
+$fh->print, $fh->printf, $fh->getline, $fh->getlines
 
-=over 4
+=item SEE ALSO
 
-=item Overridden methods
+=back
 
-B<dlsyms>
+=head2 Filter::Simple - Simplified source filtering
 
-=back
+=over 4
 
-replace_manpage_separator
+=item SYNOPSIS
 
-B<maybe_command>
+=item DESCRIPTION
 
-B<find_tests>
+=over 4
 
-B<init_DIRFILESEP>
+=item The Problem
 
-B<init_others>
+=item A Solution
 
-init_platform (o), platform_constants (o)
+=item Disabling or changing <no> behaviour
 
-special_targets (o)
+=item All-in-one interface
 
-static_lib (o)
+=item Filtering only specific components of source code
 
-dynamic_lib (o)
+C<"code">, C<"code_no_comments">, C<"executable">,
+C<"executable_no_comments">, C<"quotelike">, C<"string">, C<"regex">,
+C<"all">
 
-clean
+=item Filtering only the code parts of source code
 
-init_linker
+Most source code ceases to be grammatically correct when it is broken up
+into the pieces between string literals and regexes. So the C<'code'>
+and C<'code_no_comments'> component filter behave slightly differently
+from the other partial filters described in the previous section.
 
-perl_script
+=item Using Filter::Simple with an explicit C<import> subroutine
 
-xs_o (o)
+=item Using Filter::Simple and Exporter together
 
-pasthru (o)
+=item How it works
 
-oneliner (o)
+=back
 
-max_exec_len
+=item AUTHOR
 
-os_flavor
+=item COPYRIGHT
 
-=head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
+=back
+
+=head2 Filter::Util::Call - Perl Source Filter Utility Module
 
 =over 4
 
@@ -14385,47 +18377,39 @@ os_flavor
 
 =over 4
 
-=item Overriden methods
-
-dist_test
-
-=back
-
-=back
+=item B<use Filter::Util::Call>
 
-subdir_x
+=item B<import()>
 
-xs_c
+=item B<filter() and anonymous sub>
 
-xs_cpp
+B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
 
-xs_o
+=back
 
-clean_subdirs_target
+=item EXAMPLES
 
-realclean_subdirs_target
+=over 4
 
-max_exec_len
+=item Example 1: A simple filter.
 
-os_flavor
+=item Example 2: Using the context
 
-=over 4
+=item Example 3: Using the context within the filter
 
-=item AUTHOR
+=item Example 4: Using filter_del
 
 =back
 
-=head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
-
-=over 4
+=item Filter::Simple
 
-=item SYNOPSIS
+=item AUTHOR
 
-=item DESCRIPTION
+=item DATE
 
 =back
 
-=head2 ExtUtils::MakeMaker - Create a module Makefile
+=head2 FindBin - Locate directory of original perl script
 
 =over 4
 
@@ -14433,165 +18417,143 @@ os_flavor
 
 =item DESCRIPTION
 
-=over 4
+=item EXPORTABLE VARIABLES
 
-=item How To Write A Makefile.PL
+=item KNOWN ISSUES
 
-=item Default Makefile Behaviour
+=item KNOWN BUGS
 
-=item make test
+=item AUTHORS
 
-=item make testdb
+=item COPYRIGHT
 
-=item make install
+=back
 
-=item PREFIX and LIB attribute
+=head2 GDBM_File - Perl5 access to the gdbm library.
 
-=item AFS users
+=over 4
 
-=item Static Linking of a new Perl Binary
+=item SYNOPSIS
 
-=item Determination of Perl Library and Installation Locations
+=item DESCRIPTION
 
-=item Which architecture dependent directory?
+=item AVAILABILITY
 
-=item Using Attributes and Parameters
+=item BUGS
 
-ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
-CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
-EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
-FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
-INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
-INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
-INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLVENDORARCH,
-INSTALLVENDORBIN, INSTALLVENDORLIB, INSTALLVENDORMAN1DIR,
-INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR,
-INST_MAN3DIR, INST_SCRIPT, LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS,
-LINKTYPE, MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET,
-MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT,
-OPTIMIZE, PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB,
-PERL_MALLOC_OK, PERLPREFIX, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW,
-PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
-PPM_INSTALL_SCRIPT, PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT,
-PRINT_PREREQ, SITEPREFIX, SIGN, SKIP, TYPEMAPS, VENDORPREFIX, VERBINST,
-VERSION, VERSION_FROM, VERSION_SYM, XS, XSOPT, XSPROTOARG, XS_VERSION
+=item SEE ALSO
 
-=item Additional lowercase attributes
+=back
 
-clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
-test, tool_autosplit
+=head2 Getopt::Long - Extended processing of command line options
 
-=item Overriding MakeMaker Methods
+=over 4
 
-=item The End Of Cargo Cult Programming
+=item SYNOPSIS
 
-C<<MAN3PODS => ' '>>
+=item DESCRIPTION
 
-=item Hintsfile support
+=item Command Line Options, an Introduction
 
-=item Distribution Support
+=item Getting Started with Getopt::Long
 
-   make distcheck,    make skipcheck,   make distclean,    make manifest, 
-  make distdir,   make disttest,    make tardist,    make dist,    make
-uutardist,    make shdist,    make zipdist,    make ci
+=over 4
 
-=item Module Meta-Data
+=item Simple options
 
-=item Disabling an extension
+=item A little bit less simple options
 
-=item Other Handy Functions
+=item Mixing command line option with other arguments
 
-prompt
+=item Options with values
 
-=back
+=item Options with multiple values
 
-=item ENVIRONMENT
+=item Options with hash values
 
-PERL_MM_OPT, PERL_MM_USE_DEFAULT
+=item User-defined subroutines to handle options
 
-=item SEE ALSO
+=item Options with multiple names
 
-=item AUTHORS
+=item Case and abbreviations
 
-=item LICENSE
+=item Summary of Option Specifications
+
+!, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
++ [ I<desttype> ]
 
 =back
 
-=head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
-MakeMaker
+=item Advanced Possibilities
 
 =over 4
 
-=item DESCRIPTION
+=item Object oriented interface
 
-=over 4
+=item Thread Safety
 
-=item Module Installation
+=item Documentation and help texts
 
-How do I keep from installing man pages?, How do I use a module without
-installing it?
+=item Storing option values in a hash
 
-=item Philosophy and History
+=item Bundling
 
-Why not just use <insert other build config tool here>?, What is
-Module::Build and how does it relate to MakeMaker?, pure perl. no make, no
-shell commands, easier to customize, cleaner internals, less cruft
+=item The lonesome dash
 
-=item Module Writing
+=item Argument callback
 
-How do I keep my $VERSION up to date without resetting it manually?, What's
-this F<META.yml> thing and how did it get in my F<MANIFEST>?!
+=back
 
-=item XS
+=item Configuring Getopt::Long
 
-How to I prevent "object version X.XX does not match bootstrap parameter
-Y.YY" errors?, How do I make two or more XS files coexist in the same
-directory?
+default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
+require_order, permute, bundling (default: disabled), bundling_override
+(default: disabled), ignore_case  (default: enabled), ignore_case_always
+(default: disabled), auto_version (default:disabled), auto_help
+(default:disabled), pass_through (default: disabled), prefix,
+prefix_pattern, long_prefix_pattern, debug (default: disabled)
 
-=back
+=item Exportable Methods
 
-=item PATCHING
+VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
 
-=item AUTHOR
+=item Return values and Errors
 
-=item SEE ALSO
+=item Legacy
 
-=back
+=over 4
 
-=head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
+=item Default destinations
 
-=over 4
+=item Alternative option starters
 
-=item SYNOPSIS
+=item Configuration variables
 
-=item DESCRIPTION
+=back
+
+=item Trouble Shooting
 
 =over 4
 
-=item The Mantra
-
-=item The Layout
+=item GetOptions does not return a false result when an option is not
+supplied
 
-Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
-bin/
+=item GetOptions does not split the command line correctly
 
-=back
+=item Undefined subroutine &main::GetOptions called
 
-=item SEE ALSO
+=item How do I put a "-?" option into a Getopt::Long?
 
 =back
 
-=head2 ExtUtils::MakeMaker::bytes - Version-agnostic bytes.pm
-
-=over 4
-
-=item SYNOPSIS
+=item AUTHOR
 
-=item DESCRIPTION
+=item COPYRIGHT AND DISCLAIMER
 
 =back
 
-=head2 ExtUtils::MakeMaker::vmsish - Platform-agnostic vmsish.pm
+=head2 Getopt::Std, getopt, getopts - Process single-character switches
+with switch clustering
 
 =over 4
 
@@ -14599,9 +18561,11 @@ bin/
 
 =item DESCRIPTION
 
+=item C<--help> and C<--version>
+
 =back
 
-=head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
+=head2 Hash::Util - A selection of general-utility hash subroutines
 
 =over 4
 
@@ -14611,60 +18575,32 @@ bin/
 
 =over 4
 
-=item Functions
+=item Restricted hashes
 
-mkmanifest
+lock_keys, unlock_keys
 
 =back
 
 =back
 
-manifind
-
-manicheck
-
-filecheck
-
-fullcheck
-
-skipcheck
-
-maniread
-
-manicopy
-
-maniadd
-
-=over 4
-
-=item MANIFEST
-
-=item MANIFEST.SKIP
-
-=item EXPORT_OK
+lock_value, unlock_value
 
-=item GLOBAL VARIABLES
+B<lock_hash>, B<unlock_hash>
 
-=back
+B<hash_seed>
 
 =over 4
 
-=item DIAGNOSTICS
-
-C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
-C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
-
-=item ENVIRONMENT
+=item CAVEATS
 
-B<PERL_MM_MANIFEST_DEBUG>
+=item AUTHOR
 
 =item SEE ALSO
 
-=item AUTHOR
-
 =back
 
-=head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
+=head2 I18N::Collate - compare 8-bit scalar data according to the current
+locale
 
 =over 4
 
@@ -14672,11 +18608,10 @@ B<PERL_MM_MANIFEST_DEBUG>
 
 =item DESCRIPTION
 
-=item SEE ALSO
-
 =back
 
-=head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
+=head2 I18N::LangTags - functions for dealing with RFC3066-style language
+tags
 
 =over 4
 
@@ -14686,44 +18621,44 @@ B<PERL_MM_MANIFEST_DEBUG>
 
 =back
 
-=head2 ExtUtils::Mksymlists - write linker options files for dynamic
-extension
+the function is_language_tag($lang1)
 
-=over 4
+the function extract_language_tags($whatever)
 
-=item SYNOPSIS
+the function same_language_tag($lang1, $lang2)
 
-=item DESCRIPTION
+the function similarity_language_tag($lang1, $lang2)
 
-DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
+the function is_dialect_of($lang1, $lang2)
 
-=item AUTHOR
+the function super_languages($lang1)
 
-=item REVISION
+the function locale2language_tag($locale_identifier)
 
-=back
+the function encode_language_tag($lang1)
 
-=head2 ExtUtils::Packlist - manage .packlist files
+the function alternate_language_tags($lang1)
 
-=over 4
+the function @langs = panic_languages(@accept_languages)
 
-=item SYNOPSIS
+the function implicate_supers( ...languages... ), the function
+implicate_supers_strictly( ...languages... )
 
-=item DESCRIPTION
+=over 4
 
-=item USAGE
+=item ABOUT LOWERCASING
 
-=item FUNCTIONS
+=item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
 
-new(), read(), write(), validate(), packlist_file()
+=item SEE ALSO
 
-=item EXAMPLE
+=item COPYRIGHT
 
 =item AUTHOR
 
 =back
 
-=head2 ExtUtils::testlib - add blib/* directories to @INC
+=head2 I18N::LangTags::Detect - detect the user's language preferences
 
 =over 4
 
@@ -14731,35 +18666,167 @@ new(), read(), write(), validate(), packlist_file()
 
 =item DESCRIPTION
 
-=back
-
-=head2 Fatal - replace functions with equivalents which succeed or die
+=item FUNCTIONS
 
-=over 4
+=item ENVIRONMENT
 
-=item SYNOPSIS
+=item SEE ALSO
 
-=item DESCRIPTION
+=item COPYRIGHT
 
 =item AUTHOR
 
 =back
 
-=head2 Fcntl - load the C Fcntl.h defines
+=head2 I18N::LangTags::List -- tags and names for human languages
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
+=item DESCRIPTION
+
+=item ABOUT LANGUAGE TAGS
+
+=item LIST OF LANGUAGES
+
+{ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
+Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
+Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
+{ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
+{am} : Amharic, {i-ami} : Ami, [{apa} : Apache languages], {ar} : Arabic,
+{arc} : Aramaic, {arp} : Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy}
+: Armenian, {an} : Aragonese, [{art} : Artificial (Other)], {ast} :
+Asturian, {as} : Assamese, [{ath} : Athapascan languages], [{aus} :
+Australian languages], [{map} : Austronesian (Other)], {av} : Avaric, {ae}
+: Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani, {ban} :
+Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bm} : Bambara, [{bai}
+: Bamileke languages], {bad} : Banda, [{bnt} : Bantu (Other)], {bas} :
+Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak (Indonesia), {bej} :
+Beja, {be} : Belarusian, {bem} : Bemba, {bn} : Bengali, [{ber} : Berber
+(Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} : Bikol, {bin} : Bini,
+{bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} : Breton, {bug} :
+Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} : Buriat, {my} :
+Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan, [{cau} : Caucasian
+(Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)], [{cai} : Central
+American Indian (Other)], {chg} : Chagatai, [{cmc} : Chamic languages],
+{ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy} : Cheyenne, {chb}
+: Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} : Chinook Jargon, {chp} :
+Chipewyan, {cho} : Choctaw, {cu} : Church Slavic, {chk} : Chuukese, {cv} :
+Chuvash, {cop} : Coptic, {kw} : Cornish, {co} : Corsican, {cr} : Cree,
+{mus} : Creek, [{cpe} : English-based Creoles and pidgins (Other)], [{cpf}
+: French-based Creoles and pidgins (Other)], [{cpp} : Portuguese-based
+Creoles and pidgins (Other)], [{crp} : Creoles and pidgins (Other)], {hr} :
+Croatian, [{cus} : Cushitic (Other)], {cs} : Czech, {dak} : Dakota, {da} :
+Danish, {dar} : Dargwa, {day} : Dayak, {i-default} : Default (Fallthru)
+Language, {del} : Delaware, {din} : Dinka, {dv} : Divehi, {doi} : Dogri,
+{dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} : Dutch,
+{dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha, {efi}
+: Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite, {en} :
+English, {enm} : Old English (1100-1500), {ang} : Old English
+(ca.450-1100), {i-enochian} : Enochian (Artificial), {myv} : Erzya, {eo} :
+Esperanto, {et} : Estonian, {ee} : Ewe, {ewo} : Ewondo, {fan} : Fang, {fat}
+: Fanti, {fo} : Faroese, {fj} : Fijian, {fi} : Finnish, [{fiu} :
+Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm} : Middle French
+(ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} : Frisian, {fur} :
+Friulian, {ff} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic, {gl} : Gallegan,
+{lg} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez, {ka} : Georgian,
+{de} : German, {gmh} : Middle High German (ca.1050-1500), {goh} : Old High
+German (ca.750-1050), [{gem} : Germanic (Other)], {gil} : Gilbertese, {gon}
+: Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} : Grebo, {grc} : Ancient
+Greek, {el} : Modern Greek, {gn} : Guarani, {gu} : Gujarati, {gwi} :
+Gwich'in, {hai} : Haida, {ht} : Haitian, {ha} : Hausa, {haw} : Hawaiian,
+{he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
+Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
+{hup} : Hupa, {iba} : Iban, {is} : Icelandic, {io} : Ido, {ig} : Igbo,
+{ijo} : Ijo, {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European
+(Other)], {id} : Indonesian, {inh} : Ingush, {ia} : Interlingua
+(International Auxiliary Language Association), {ie} : Interlingue, {iu} :
+Inuktitut, {ik} : Inupiaq, [{ira} : Iranian (Other)], {ga} : Irish, {mga} :
+Middle Irish (900-1200), {sga} : Old Irish (to 900), [{iro} : Iroquoian
+languages], {it} : Italian, {ja} : Japanese, {jv} : Javanese, {jrb} :
+Judeo-Arabic, {jpr} : Judeo-Persian, {kbd} : Kabardian, {kab} : Kabyle,
+{kac} : Kachin, {kl} : Kalaallisut, {xal} : Kalmyk, {kam} : Kamba, {kn} :
+Kannada, {kr} : Kanuri, {krc} : Karachay-Balkar, {kaa} : Kara-Kalpak, {kar}
+: Karen, {ks} : Kashmiri, {csb} : Kashubian, {kaw} : Kawi, {kk} : Kazakh,
+{kha} : Khasi, {km} : Khmer, [{khi} : Khoisan (Other)], {kho} : Khotanese,
+{ki} : Kikuyu, {kmb} : Kimbundu, {rw} : Kinyarwanda, {ky} : Kirghiz,
+{i-klingon} : Klingon, {kv} : Komi, {kg} : Kongo, {kok} : Konkani, {ko} :
+Korean, {kos} : Kosraean, {kpe} : Kpelle, {kro} : Kru, {kj} : Kuanyama,
+{kum} : Kumyk, {ku} : Kurdish, {kru} : Kurukh, {kut} : Kutenai, {lad} :
+Ladino, {lah} : Lahnda, {lam} : Lamba, {lo} : Lao, {la} : Latin, {lv} :
+Latvian, {lb} : Letzeburgesch, {lez} : Lezghian, {li} : Limburgish, {ln} :
+Lingala, {lt} : Lithuanian, {nds} : Low German, {art-lojban} : Lojban
+(Artificial), {loz} : Lozi, {lu} : Luba-Katanga, {lua} : Luba-Lulua, {lui}
+: Luiseno, {lun} : Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai,
+{mk} : Macedonian, {mad} : Madurese, {mag} : Magahi, {mai} : Maithili,
+{mak} : Makasar, {mg} : Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} :
+Maltese, {mnc} : Manchu, {mdr} : Mandar, {man} : Mandingo, {mni} :
+Manipuri, [{mno} : Manobo languages], {gv} : Manx, {mi} : Maori, {mr} :
+Marathi, {chm} : Mari, {mh} : Marshall, {mwr} : Marwari, {mas} : Masai,
+[{myn} : Mayan languages], {men} : Mende, {mic} : Micmac, {min} :
+Minangkabau, {i-mingo} : Mingo, [{mis} : Miscellaneous languages], {moh} :
+Mohawk, {mdf} : Moksha, {mo} : Moldavian, [{mkh} : Mon-Khmer (Other)],
+{lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul} : Multiple
+languages], [{mun} : Munda languages], {nah} : Nahuatl, {nap} : Neapolitan,
+{na} : Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele,
+{ng} : Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
+Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
+{nog} : Nogai, {non} : Old Norse, [{nai} : North American Indian], {no} :
+Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub} :
+Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro, {nzi}
+: Nzima, {oc} : Occitan (post 1500), {oj} : Ojibwa, {or} : Oriya, {om} :
+Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
+languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
+Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
+Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
+(ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
+: Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
+{pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
+Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
+[{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
+Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
+languages], {sam} : Samaritan Aramaic, {se} : Northern Sami, {sma} :
+Southern Sami, {smn} : Inari Sami, {smj} : Lule Sami, {sms} : Skolt Sami,
+[{smi} : Sami languages (Other)], {sm} : Samoan, {sad} : Sandawe, {sg} :
+Sango, {sa} : Sanskrit, {sat} : Santali, {sc} : Sardinian, {sas} : Sasak,
+{sco} : Scots, {sel} : Selkup, [{sem} : Semitic (Other)], {sr} : Serbian,
+{srr} : Serer, {shn} : Shan, {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign
+Languages, {bla} : Siksika, {sd} : Sindhi, {si} : Sinhalese, [{sit} :
+Sino-Tibetan (Other)], [{sio} : Siouan languages], {den} : Slave
+(Athapascan), [{sla} : Slavic (Other)], {sk} : Slovak, {sl} : Slovenian,
+{sog} : Sogdian, {so} : Somali, {son} : Songhai, {snk} : Soninke, {wen} :
+Sorbian languages, {nso} : Northern Sotho, {st} : Southern Sotho, [{sai} :
+South American Indian (Other)], {es} : Spanish, {suk} : Sukuma, {sux} :
+Sumerian, {su} : Sundanese, {sus} : Susu, {sw} : Swahili, {ss} : Swati,
+{sv} : Swedish, {syr} : Syriac, {tl} : Tagalog, {ty} : Tahitian, [{tai} :
+Tai (Other)], {tg} : Tajik, {tmh} : Tamashek, {ta} : Tamil, {i-tao} : Tao,
+{tt} : Tatar, {i-tay} : Tayal, {te} : Telugu, {ter} : Tereno, {tet} :
+Tetum, {th} : Thai, {bo} : Tibetan, {tig} : Tigre, {ti} : Tigrinya, {tem} :
+Timne, {tiv} : Tiv, {tli} : Tlingit, {tpi} : Tok Pisin, {tkl} : Tokelau,
+{tog} : Tonga (Nyasa), {to} : Tonga (Tonga Islands), {tsi} : Tsimshian,
+{ts} : Tsonga, {i-tsu} : Tsou, {tn} : Tswana, {tum} : Tumbuka, [{tup} :
+Tupi languages], {tr} : Turkish, {ota} : Ottoman Turkish (1500-1928), {crh}
+: Crimean Turkish, {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} :
+Twi, {udm} : Udmurt, {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian,
+{umb} : Umbundu, {und} : Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} :
+Vai, {ve} : Venda, {vi} : Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak}
+: Wakashan languages], {wa} : Walloon, {wal} : Walamo, {war} : Waray, {was}
+: Washo, {cy} : Welsh, {wo} : Wolof, {x-...} : Unregistered (Semi-Private
+Use), {xh} : Xhosa, {sah} : Yakut, {yao} : Yao, {yap} : Yapese, {ii} :
+Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
+: Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} : Zhuang, {zu} : Zulu,
+{zun} : Zuni
+
+=item SEE ALSO
 
-=item NOTE
+=item COPYRIGHT AND DISCLAIMER
 
-=item EXPORTED SYMBOLS
+=item AUTHOR
 
 =back
 
-=head2 File::Basename, fileparse - split a pathname into pieces
+=head2 I18N::Langinfo - query locale information
 
 =over 4
 
@@ -14767,29 +18834,21 @@ new(), read(), write(), validate(), packlist_file()
 
 =item DESCRIPTION
 
-fileparse_set_fstype, fileparse
-
-=item EXAMPLES
+=over 4
 
-C<basename>, C<dirname>
+=item EXPORT
 
 =back
 
-=head2 File::CheckTree, validate - run many filetest checks on a tree
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item SEE ALSO
 
 =item AUTHOR
 
-=item HISTORY
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 File::Compare - Compare files or filehandles
+=head2 IO - load various IO modules
 
 =over 4
 
@@ -14797,13 +18856,12 @@ C<basename>, C<dirname>
 
 =item DESCRIPTION
 
-=item RETURN
-
-=item AUTHOR
+=item DEPRECATED
 
 =back
 
-=head2 File::Copy - Copy files or filehandles
+=head2 IO::Compress::Deflate    - Perl interface to write RFC 1950
+files/buffers
 
 =over 4
 
@@ -14811,141 +18869,102 @@ C<basename>, C<dirname>
 
 =item DESCRIPTION
 
-=over 4
-
-=item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
-
-rmscopy($from,$to[,$date_flag])
-
-=back
-
-=item RETURN
-
-=item NOTES
-
-=item AUTHOR
-
-=back
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
 
-=head2 File::DosGlob - DOS like globbing and then some
+=item Functional Interface
 
 =over 4
 
-=item SYNOPSIS
+=item deflate $input => $output [, OPTS]
 
-=item DESCRIPTION
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
 
-=item NOTES
+=item deflate \%hash [, OPTS]
 
-=item EXPORTS (by request only)
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
 
-=item BUGS
+=item Notes
 
-=item AUTHOR
+=item Optional Parameters
 
-=item HISTORY
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
 
-=item SEE ALSO
+=item Examples
 
 =back
 
-=head2 File::Find - Traverse a directory tree.
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-B<find>, B<finddepth>
+=item OO Interface
 
 =over 4
 
-=item %options
-
-C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
-C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
-C<untaint>, C<untaint_pattern>, C<untaint_skip>
-
-=item The wanted function
-
-C<$File::Find::dir> is the current directory name,, C<$_> is the current
-filename within that directory, C<$File::Find::name> is the complete
-pathname to the file
-
-=back
-
-=item WARNINGS
-
-=item CAVEAT
+=item Constructor
 
-$dont_use_nlink, symlinks
+A filename, A filehandle, A scalar reference
 
-=item NOTES
+=item Constructor Options
 
-=item BUGS AND CAVEATS
+-AutoClose =E<gt> 0|1, -Append =E<gt> 0|1, A Buffer, A Filename, A
+Filehandle, -Merge =E<gt> 0|1, -Level, -Strategy, -Strict =E<gt> 0|1
 
-=item HISTORY
+=item Examples
 
 =back
 
-=head2 File::Glob - Perl extension for BSD glob routine
+=item Methods 
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item print
 
-C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
-C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
-C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
+=item printf
 
-=item DIAGNOSTICS
+=item syswrite
 
-C<GLOB_NOSPACE>, C<GLOB_ABEND>
+=item write
 
-=item NOTES
+=item flush
 
-=item AUTHOR
+=item tell
 
-=back
+=item eof
 
-=head2 File::Path - create or remove directory trees
+=item seek
 
-=over 4
+=item binmode
 
-=item SYNOPSIS
+=item fileno
 
-=item DESCRIPTION
+=item close
 
-=item DIAGNOSTICS
+=item newStream
 
-=item AUTHORS
+=item deflateParams
 
 =back
 
-=head2 File::Spec - portably perform operations on file names
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item Importing 
 
-=item METHODS
+:all, :constants, :flush, :level, :strategy
 
-canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
-no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
-splitdir, catpath(), abs2rel, rel2abs()
+=item EXAMPLES
 
 =item SEE ALSO
 
 =item AUTHOR
 
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
 =back
 
-=head2 File::Spec::Cygwin - methods for Cygwin file specs
+=head2 IO::Compress::Gzip     - Perl interface to write RFC 1952
+files/buffers
 
 =over 4
 
@@ -14953,103 +18972,105 @@ splitdir, catpath(), abs2rel, rel2abs()
 
 =item DESCRIPTION
 
-=back
-
-canonpath
-
-file_name_is_absolute
-
-tmpdir (override)
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
 
-=head2 File::Spec::Epoc - methods for Epoc file specs
+=item Functional Interface
 
 =over 4
 
-=item SYNOPSIS
+=item gzip $input => $output [, OPTS]
 
-=item DESCRIPTION
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
 
-=item AUTHORS
+=item gzip \%hash [, OPTS]
 
-=back
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
 
-canonpath()
+=item Notes
 
-=over 4
+=item Optional Parameters
 
-=item SEE ALSO
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
 
 =back
 
-=head2 File::Spec::Functions - portably perform operations on file names
+=item OO Interface
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item Constructor
 
-=over 4
+A filename, A filehandle, A scalar reference
 
-=item Exports
+=item Constructor Options
 
-=back
+-AutoClose =E<gt> 0|1, -Append =E<gt> 0|1, A Buffer, A Filename, A
+Filehandle, -Merge =E<gt> 0|1, -Level, -Strategy, -Mimimal =E<gt> 0|1,
+-Comment =E<gt> $comment, -Name =E<gt> $string, -Time =E<gt> $number,
+-TextFlag =E<gt> 0|1, -HeaderCRC =E<gt> 0|1, -OS_Code =E<gt> $value,
+-ExtraField =E<gt> $data, -ExtraFlags =E<gt> $value, -Strict =E<gt> 0|1
 
-=item SEE ALSO
+=item Examples
 
 =back
 
-=head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
+=item Methods 
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item print
 
-=item METHODS
+=item printf
 
-canonpath
+=item syswrite
 
-=back
+=item write
 
-catdir()
+=item flush
 
-catfile
+=item tell
 
-curdir
+=item eof
 
-devnull
+=item seek
 
-rootdir
+=item binmode
 
-tmpdir
+=item fileno
 
-updir
+=item close
 
-file_name_is_absolute
+=item newStream
 
-path
+=item deflateParams
 
-splitpath
+=back
 
-splitdir
+=item Importing 
 
-catpath
+:all, :constants, :flush, :level, :strategy
 
-abs2rel
+=item EXAMPLES
 
-rel2abs
+=item SEE ALSO
 
-=over 4
+=item AUTHOR
 
-=item AUTHORS
+=item MODIFICATION HISTORY
 
-=item SEE ALSO
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 File::Spec::OS2 - methods for OS/2 file specs
+=head2 IO::Compress::RawDeflate     - Perl interface to write RFC 1951
+files/buffers
 
 =over 4
 
@@ -15057,124 +19078,120 @@ rel2abs
 
 =item DESCRIPTION
 
-tmpdir, splitpath
-
-=back
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
 
-=head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
-modules
+=item Functional Interface
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item METHODS
-
-canonpath()
-
-=back
+=item rawdeflate $input => $output [, OPTS]
 
-catdir()
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
 
-catfile
+=item rawdeflate \%hash [, OPTS]
 
-curdir
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
 
-devnull
+=item Notes
 
-rootdir
+=item Optional Parameters
 
-tmpdir
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
 
-updir
+=item Examples
 
-no_upwards
+=back
 
-case_tolerant
+=item OO Interface
 
-file_name_is_absolute
+=over 4
 
-path
+=item Constructor
 
-join
+A filename, A filehandle, A scalar reference
 
-splitpath
+=item Constructor Options
 
-splitdir
+-AutoClose =E<gt> 0|1, -Append =E<gt> 0|1, A Buffer, A Filename, A
+Filehandle, -Merge =E<gt> 0|1, -Level, -Strategy, -Strict =E<gt> 0|1
 
-catpath()
+=item Examples
 
-abs2rel
+=back
 
-rel2abs()
+=item Methods 
 
 =over 4
 
-=item SEE ALSO
+=item print
 
-=back
+=item printf
 
-=head2 File::Spec::VMS - methods for VMS file specs
+=item syswrite
 
-=over 4
+=item write
 
-=item SYNOPSIS
+=item flush
 
-=item DESCRIPTION
+=item tell
 
-eliminate_macros
+=item eof
 
-=back
+=item seek
 
-fixpath
+=item binmode
 
-=over 4
+=item fileno
 
-=item Methods always loaded
+=item close
 
-canonpath (override)
+=item newStream
 
-=back
+=item deflateParams
 
-catdir
+=back
 
-catfile
+=item Importing 
 
-curdir (override)
+:all, :constants, :flush, :level, :strategy
 
-devnull (override)
+=item EXAMPLES
 
-rootdir (override)
+=item SEE ALSO
 
-tmpdir (override)
+=item AUTHOR
 
-updir (override)
+=item MODIFICATION HISTORY
 
-case_tolerant (override)
+=item COPYRIGHT AND LICENSE
 
-path (override)
+=back
 
-file_name_is_absolute (override)
+=head2 IO::Dir - supply object methods for directory handles
 
-splitpath (override)
+=over 4
 
-splitdir (override)
+=item SYNOPSIS
 
-catpath (override)
+=item DESCRIPTION
 
-abs2rel (override)
+new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
+rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
 
-rel2abs (override)
+=item SEE ALSO
 
-=over 4
+=item AUTHOR
 
-=item SEE ALSO
+=item COPYRIGHT
 
 =back
 
-=head2 File::Spec::Win32 - methods for Win32 file specs
+=head2 IO::File - supply object methods for filehandles
 
 =over 4
 
@@ -15182,141 +19199,167 @@ rel2abs (override)
 
 =item DESCRIPTION
 
-devnull
+=item CONSTRUCTOR
 
-=back
+new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
 
-tmpdir
+=item METHODS
 
-catfile
+open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS ), binmode(
+[LAYER] )
 
-canonpath
+=item NOTE
 
-splitpath
+=item SEE ALSO
 
-splitdir
+=item HISTORY
 
-catpath
+=back
+
+=head2 IO::Handle - supply object methods for I/O handles
 
 =over 4
 
-=item Note For File::Spec::Win32 Maintainers
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item CONSTRUCTOR
 
-=item SEE ALSO
+new (), new_from_fd ( FD, MODE )
 
-=back
+=item METHODS
 
-=head2 File::Temp - return name and handle of a temporary file safely
+$io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
+$io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
+$io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
+$io->blocking ( [ BOOL ] ), $io->untaint
 
-=over 4
+=item NOTE
 
-=item PORTABILITY
+=item SEE ALSO
 
-=item SYNOPSIS
+=item BUGS
 
-=item DESCRIPTION
+=item HISTORY
 
 =back
 
+=head2 IO::Pipe - supply object methods for pipes
+
 =over 4
 
-=item OO INTERFACE
+=item SYNOPSIS
 
-B<new>
+=item DESCRIPTION
 
-=back
+=item CONSTRUCTOR
 
-B<filename>
+new ( [READER, WRITER] )
 
-B<DESTROY>
+=item METHODS
 
-=over 4
+reader ([ARGS]), writer ([ARGS]), handles ()
 
-=item FUNCTIONS
+=item SEE ALSO
 
-B<tempfile>
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-B<tempdir>
+=head2 IO::Poll - Object interface to system poll call
 
 =over 4
 
-=item MKTEMP FUNCTIONS
-
-B<mkstemp>
-
-=back
+=item SYNOPSIS
 
-B<mkstemps>
+=item DESCRIPTION
 
-B<mkdtemp>
+=item METHODS
 
-B<mktemp>
+mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
+IO ), handles( [ EVENT_MASK ] )
 
-=over 4
+=item SEE ALSO
 
-=item POSIX FUNCTIONS
+=item AUTHOR
 
-B<tmpnam>
+=item COPYRIGHT
 
 =back
 
-B<tmpfile>
+=head2 IO::Seekable - supply seek based methods for I/O objects
 
 =over 4
 
-=item ADDITIONAL FUNCTIONS
+=item SYNOPSIS
 
-B<tempnam>
+=item DESCRIPTION
+
+$io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
+WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
+$io->tell
+
+=item SEE ALSO
+
+=item HISTORY
 
 =back
 
+=head2 IO::Select - OO interface to the select system call
+
 =over 4
 
-=item UTILITY FUNCTIONS
+=item SYNOPSIS
 
-B<unlink0>
+=item DESCRIPTION
 
-=back
+=item CONSTRUCTOR
 
-B<cmpstat>
+new ( [ HANDLES ] )
 
-B<unlink1>
+=item METHODS
 
-=over 4
+add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
+[ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
+count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
 
-=item PACKAGE VARIABLES
+=item EXAMPLE
 
-B<safe_level>, STANDARD, MEDIUM, HIGH
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-TopSystemUID
+=head2 IO::Socket - Object interface to socket communications
 
 =over 4
 
-=item WARNING
+=item SYNOPSIS
 
-=over 4
+=item DESCRIPTION
 
-=item Temporary files and NFS
+=item CONSTRUCTOR
 
-=back
+new ( [ARGS] )
 
-=item HISTORY
+=item METHODS
+
+accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
+protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
 
 =item SEE ALSO
 
 =item AUTHOR
 
+=item COPYRIGHT
+
 =back
 
-=head2 File::stat - by-name interface to Perl's built-in stat() functions
+=head2 IO::Socket::INET - Object interface for AF_INET domain sockets
 
 =over 4
 
@@ -15324,31 +19367,28 @@ TopSystemUID
 
 =item DESCRIPTION
 
-=item BUGS
-
-=item NOTE
-
-=item AUTHOR
-
-=back
+=item CONSTRUCTOR
 
-=head2 FileCache - keep more files open than the system permits
+new ( [ARGS] )
 
 =over 4
 
-=item SYNOPSIS
+=item METHODS
 
-=item DESCRIPTION
+sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
+()
 
-cacheout EXPR, cacheout MODE, EXPR
+=back
 
-=item CAVEATS
+=item SEE ALSO
 
-=item BUGS
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=head2 FileHandle - supply object methods for filehandles
+=head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
 
 =over 4
 
@@ -15356,13 +19396,24 @@ cacheout EXPR, cacheout MODE, EXPR
 
 =item DESCRIPTION
 
-$fh->print, $fh->printf, $fh->getline, $fh->getlines
+=item CONSTRUCTOR
+
+new ( [ARGS] )
+
+=item METHODS
+
+hostpath(), peerpath()
 
 =item SEE ALSO
 
+=item AUTHOR
+
+=item COPYRIGHT
+
 =back
 
-=head2 Filter::Simple - Simplified source filtering
+=head2 IO::Uncompress::AnyInflate - Perl interface to read RFC 1950, 1951 &
+1952 files/buffers
 
 =over 4
 
@@ -15370,86 +19421,103 @@ $fh->print, $fh->printf, $fh->getline, $fh->getlines
 
 =item DESCRIPTION
 
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
+
+=item Functional Interface
+
 =over 4
 
-=item The Problem
+=item anyinflate $input => $output [, OPTS]
 
-=item A Solution
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
 
-=item Disabling or changing <no> behaviour
+=item anyinflate \%hash [, OPTS]
 
-=item All-in-one interface
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
 
-=item Filtering only specific components of source code
+=item Notes
 
-C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
-C<"all">
+=item Optional Parameters
 
-=item Filtering only the code parts of source code
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
 
-Most source code ceases to be grammatically correct when it is broken up
-into the pieces between string literals and regexes. So the C<'code'>
-component filter behaves slightly differently from the other partial
-filters
-described in the previous section.
+=item Examples
 
-=item Using Filter::Simple with an explicit C<import> subroutine
+=back
 
-=item Using Filter::Simple and Exporter together
+=item OO Interface
 
-=item How it works
+=over 4
 
-=back
+=item Constructor
 
-=item AUTHOR
+A filename, A filehandle, A scalar reference
 
-=item COPYRIGHT
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1, -ParseExtra =E<gt> 0|1
+
+=item Examples
 
 =back
 
-=head2 Filter::Util::Call - Perl Source Filter Utility Module
+=item Methods 
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item read
 
-=over 4
+=item read
 
-=item B<use Filter::Util::Call>
+=item getline
 
-=item B<import()>
+=item getc
 
-=item B<filter() and anonymous sub>
+=item ungetc
 
-B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
+=item inflateSync
 
-=back
+=item getHeaderInfo
 
-=item EXAMPLES
+=item tell
 
-=over 4
+=item eof
 
-=item Example 1: A simple filter.
+=item seek
 
-=item Example 2: Using the context
+=item binmode
 
-=item Example 3: Using the context within the filter
+=item fileno
 
-=item Example 4: Using filter_del
+=item close
 
 =back
 
-=item Filter::Simple
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
 
 =item AUTHOR
 
-=item DATE
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 FindBin - Locate directory of original perl script
+=head2 IO::Uncompress::Gunzip - Perl interface to read RFC 1952
+files/buffers
 
 =over 4
 
@@ -15457,201 +19525,209 @@ B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
 
 =item DESCRIPTION
 
-=item EXPORTABLE VARIABLES
-
-=item KNOWN ISSUES
-
-=item KNOWN BUGS
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
 
-=item AUTHORS
+=item Functional Interface
 
-=item COPYRIGHT
+=over 4
 
-=back
+=item gunzip $input => $output [, OPTS]
 
-=head2 GDBM_File - Perl5 access to the gdbm library.
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
 
-=over 4
+=item gunzip \%hash [, OPTS]
 
-=item SYNOPSIS
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
 
-=item DESCRIPTION
+=item Notes
 
-=item AVAILABILITY
+=item Optional Parameters
 
-=item BUGS
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
 
-=item SEE ALSO
+=item Examples
 
 =back
 
-=head2 Getopt::Long - Extended processing of command line options
+=item OO Interface
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item Constructor
 
-=item Command Line Options, an Introduction
+A filename, A filehandle, A scalar reference
 
-=item Getting Started with Getopt::Long
+=item Constructor Options
 
-=over 4
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1, -ParseExtra =E<gt> 0|1
 
-=item Simple options
+=item Examples
 
-=item A little bit less simple options
+=back
 
-=item Mixing command line option with other arguments
+=item Methods 
 
-=item Options with values
+=over 4
 
-=item Options with multiple values
+=item read
 
-=item Options with hash values
+=item read
 
-=item User-defined subroutines to handle options
+=item getline
 
-=item Options with multiple names
+=item getc
 
-=item Case and abbreviations
+=item ungetc
 
-=item Summary of Option Specifications
+=item inflateSync
 
-!, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
-+ [ I<desttype> ]
+=item getHeaderInfo
 
-=back
+Comment
 
-=item Advanced Possibilities
+=item tell
 
-=over 4
+=item eof
 
-=item Object oriented interface
+=item seek
 
-=item Thread Safety
+=item binmode
 
-=item Documentation and help texts
+=item fileno
 
-=item Storing options in a hash
+=item close
 
-=item Bundling
+=back
 
-=item The lonesome dash
+=item Importing 
 
-=item Argument callback
+:all
 
-=back
+=item EXAMPLES
 
-=item Configuring Getopt::Long
+=item SEE ALSO
 
-default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
-require_order, permute, bundling (default: disabled), bundling_override
-(default: disabled), ignore_case  (default: enabled), ignore_case_always
-(default: disabled), auto_version (default:disabled), auto_help
-(default:disabled), pass_through (default: disabled), prefix,
-prefix_pattern, debug (default: disabled)
+=item AUTHOR
 
-=item Exportable Methods
+=item MODIFICATION HISTORY
 
-VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
+=item COPYRIGHT AND LICENSE
 
-=item Return values and Errors
+=back
 
-=item Legacy
+=head2 IO::Uncompress::Inflate - Perl interface to read RFC 1950
+files/buffers
 
 =over 4
 
-=item Default destinations
-
-=item Alternative option starters
+=item SYNOPSIS
 
-=item Configuration variables
+=item DESCRIPTION
 
-=back
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
 
-=item Trouble Shooting
+=item Functional Interface
 
 =over 4
 
-=item GetOptions does not return a false result when an option is not
-supplied
+=item inflate $input => $output [, OPTS]
 
-=item GetOptions does not split the command line correctly
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
 
-=item Undefined subroutine &main::GetOptions called
+=item inflate \%hash [, OPTS]
 
-=item How do I put a "-?" option into a Getopt::Long?
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
 
-=back
+=item Notes
 
-=item AUTHOR
+=item Optional Parameters
 
-=item COPYRIGHT AND DISCLAIMER
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
+
+=item Examples
 
 =back
 
-=head2 Getopt::Std, getopt, getopts - Process single-character switches
-with switch clustering
+=item OO Interface
 
 =over 4
 
-=item SYNOPSIS
+=item Constructor
 
-=item DESCRIPTION
+A filename, A filehandle, A scalar reference
 
-=item C<--help> and C<--version>
+=item Constructor Options
+
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1
+
+=item Examples
 
 =back
 
-=head2 Hash::Util - A selection of general-utility hash subroutines
+=item Methods 
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item read
 
-=over 4
+=item read
 
-=item Restricted hashes
+=item getline
 
-lock_keys, unlock_keys
+=item getc
 
-=back
+=item ungetc
 
-=back
+=item inflateSync
 
-lock_value, unlock_value
+=item getHeaderInfo
 
-B<lock_hash>, B<unlock_hash>
+=item tell
 
-B<hash_seed>
+=item eof
 
-=over 4
+=item seek
 
-=item CAVEATS
+=item binmode
 
-=item AUTHOR
+=item fileno
 
-=item SEE ALSO
+=item close
 
 =back
 
-=head2 I18N::Collate - compare 8-bit scalar data according to the current
-locale
+=item Importing 
 
-=over 4
+:all
 
-=item SYNOPSIS
+=item EXAMPLES
 
-=item DESCRIPTION
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 I18N::LangTags - functions for dealing with RFC3066-style language
-tags
+=head2 IO::Uncompress::RawInflate - Perl interface to read RFC 1951
+files/buffers
 
 =over 4
 
 
 =item DESCRIPTION
 
-=back
+DO NOT use in production code, The documentation is incomplete in places,
+Parts of the interface defined here are tentative, Please report any
+problems you find
 
-the function is_language_tag($lang1)
+=item Functional Interface
 
-the function extract_language_tags($whatever)
+=over 4
 
-the function same_language_tag($lang1, $lang2)
+=item rawinflate $input => $output [, OPTS]
 
-the function similarity_language_tag($lang1, $lang2)
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, A Hash
+Reference, An Array Reference, An Output FileGlob
 
-the function is_dialect_of($lang1, $lang2)
+=item rawinflate \%hash [, OPTS]
 
-the function super_languages($lang1)
+undef, A filename, A filehandle, A scalar reference, A Hash Reference, An
+Array Reference
 
-the function locale2language_tag($locale_identifier)
+=item Notes
 
-the function encode_language_tag($lang1)
+=item Optional Parameters
 
-the function alternate_language_tags($lang1)
+AutoClose =E<gt> 0|1, -Append =E<gt> 0|1
 
-the function @langs = panic_languages(@accept_languages)
+=item Examples
 
-the function implicate_supers( ...languages... ), the function
-implicate_supers_strictly( ...languages... )
+=back
+
+=item OO Interface
 
 =over 4
 
-=item ABOUT LOWERCASING
+=item Constructor
 
-=item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
+A filename, A filehandle, A scalar reference
 
-=item SEE ALSO
+=item Constructor Options
 
-=item COPYRIGHT
+-AutoClose =E<gt> 0|1, -MultiStream =E<gt> 0|1, -Prime =E<gt> $string,
+-Transparent =E<gt> 0|1, -BlockSize =E<gt> $num, -InputLength =E<gt> $size,
+-Append =E<gt> 0|1, -Strict =E<gt> 0|1
 
-=item AUTHOR
+=item Examples
 
 =back
 
-=head2 I18N::LangTags::Detect - detect the user's language preferences
+=item Methods 
 
 =over 4
 
-=item SYNOPSIS
+=item read
 
-=item DESCRIPTION
+=item read
 
-=item FUNCTIONS
+=item getline
 
-=item ENVIRONMENT
+=item getc
 
-=item SEE ALSO
+=item ungetc
 
-=item COPYRIGHT
+=item inflateSync
 
-=item AUTHOR
+=item getHeaderInfo
 
-=back
+=item tell
 
-=head2 I18N::LangTags::List -- tags and names for human languages
+=item eof
 
-=over 4
+=item seek
 
-=item SYNOPSIS
+=item binmode
 
-=item DESCRIPTION
+=item fileno
 
-=item ABOUT LANGUAGE TAGS
+=item close
 
-=item LIST OF LANGUAGES
+=back
 
-{ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
-Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
-Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
-{ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
-{am} : Amharic, {i-ami} : Ami, [{apa} : Apache languages], {ar} : Arabic,
-{arc} : Aramaic, {arp} : Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy}
-: Armenian, {an} : Aragonese, [{art} : Artificial (Other)], {ast} :
-Asturian, {as} : Assamese, [{ath} : Athapascan languages], [{aus} :
-Australian languages], [{map} : Austronesian (Other)], {av} : Avaric, {ae}
-: Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani, {ban} :
-Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bm} : Bambara, [{bai}
-: Bamileke languages], {bad} : Banda, [{bnt} : Bantu (Other)], {bas} :
-Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak (Indonesia), {bej} :
-Beja, {be} : Belarusian, {bem} : Bemba, {bn} : Bengali, [{ber} : Berber
-(Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} : Bikol, {bin} : Bini,
-{bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} : Breton, {bug} :
-Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} : Buriat, {my} :
-Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan, [{cau} : Caucasian
-(Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)], [{cai} : Central
-American Indian (Other)], {chg} : Chagatai, [{cmc} : Chamic languages],
-{ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy} : Cheyenne, {chb}
-: Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} : Chinook Jargon, {chp} :
-Chipewyan, {cho} : Choctaw, {cu} : Church Slavic, {chk} : Chuukese, {cv} :
-Chuvash, {cop} : Coptic, {kw} : Cornish, {co} : Corsican, {cr} : Cree,
-{mus} : Creek, [{cpe} : English-based Creoles and pidgins (Other)], [{cpf}
-: French-based Creoles and pidgins (Other)], [{cpp} : Portuguese-based
-Creoles and pidgins (Other)], [{crp} : Creoles and pidgins (Other)], {hr} :
-Croatian, [{cus} : Cushitic (Other)], {cs} : Czech, {dak} : Dakota, {da} :
-Danish, {dar} : Dargwa, {day} : Dayak, {i-default} : Default (Fallthru)
-Language, {del} : Delaware, {din} : Dinka, {dv} : Divehi, {doi} : Dogri,
-{dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} : Dutch,
-{dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha, {efi}
-: Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite, {en} :
-English, {enm} : Old English (1100-1500), {ang} : Old English
-(ca.450-1100), {i-enochian} : Enochian (Artificial), {myv} : Erzya, {eo} :
-Esperanto, {et} : Estonian, {ee} : Ewe, {ewo} : Ewondo, {fan} : Fang, {fat}
-: Fanti, {fo} : Faroese, {fj} : Fijian, {fi} : Finnish, [{fiu} :
-Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm} : Middle French
-(ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} : Frisian, {fur} :
-Friulian, {ff} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic, {gl} : Gallegan,
-{lg} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez, {ka} : Georgian,
-{de} : German, {gmh} : Middle High German (ca.1050-1500), {goh} : Old High
-German (ca.750-1050), [{gem} : Germanic (Other)], {gil} : Gilbertese, {gon}
-: Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} : Grebo, {grc} : Ancient
-Greek, {el} : Modern Greek, {gn} : Guarani, {gu} : Gujarati, {gwi} :
-Gwich'in, {hai} : Haida, {ht} : Haitian, {ha} : Hausa, {haw} : Hawaiian,
-{he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
-Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
-{hup} : Hupa, {iba} : Iban, {is} : Icelandic, {io} : Ido, {ig} : Igbo,
-{ijo} : Ijo, {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European
-(Other)], {id} : Indonesian, {inh} : Ingush, {ia} : Interlingua
-(International Auxiliary Language Association), {ie} : Interlingue, {iu} :
-Inuktitut, {ik} : Inupiaq, [{ira} : Iranian (Other)], {ga} : Irish, {mga} :
-Middle Irish (900-1200), {sga} : Old Irish (to 900), [{iro} : Iroquoian
-languages], {it} : Italian, {ja} : Japanese, {jv} : Javanese, {jrb} :
-Judeo-Arabic, {jpr} : Judeo-Persian, {kbd} : Kabardian, {kab} : Kabyle,
-{kac} : Kachin, {kl} : Kalaallisut, {xal} : Kalmyk, {kam} : Kamba, {kn} :
-Kannada, {kr} : Kanuri, {krc} : Karachay-Balkar, {kaa} : Kara-Kalpak, {kar}
-: Karen, {ks} : Kashmiri, {csb} : Kashubian, {kaw} : Kawi, {kk} : Kazakh,
-{kha} : Khasi, {km} : Khmer, [{khi} : Khoisan (Other)], {kho} : Khotanese,
-{ki} : Kikuyu, {kmb} : Kimbundu, {rw} : Kinyarwanda, {ky} : Kirghiz,
-{i-klingon} : Klingon, {kv} : Komi, {kg} : Kongo, {kok} : Konkani, {ko} :
-Korean, {kos} : Kosraean, {kpe} : Kpelle, {kro} : Kru, {kj} : Kuanyama,
-{kum} : Kumyk, {ku} : Kurdish, {kru} : Kurukh, {kut} : Kutenai, {lad} :
-Ladino, {lah} : Lahnda, {lam} : Lamba, {lo} : Lao, {la} : Latin, {lv} :
-Latvian, {lb} : Letzeburgesch, {lez} : Lezghian, {li} : Limburgish, {ln} :
-Lingala, {lt} : Lithuanian, {nds} : Low German, {art-lojban} : Lojban
-(Artificial), {loz} : Lozi, {lu} : Luba-Katanga, {lua} : Luba-Lulua, {lui}
-: Luiseno, {lun} : Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai,
-{mk} : Macedonian, {mad} : Madurese, {mag} : Magahi, {mai} : Maithili,
-{mak} : Makasar, {mg} : Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} :
-Maltese, {mnc} : Manchu, {mdr} : Mandar, {man} : Mandingo, {mni} :
-Manipuri, [{mno} : Manobo languages], {gv} : Manx, {mi} : Maori, {mr} :
-Marathi, {chm} : Mari, {mh} : Marshall, {mwr} : Marwari, {mas} : Masai,
-[{myn} : Mayan languages], {men} : Mende, {mic} : Micmac, {min} :
-Minangkabau, {i-mingo} : Mingo, [{mis} : Miscellaneous languages], {moh} :
-Mohawk, {mdf} : Moksha, {mo} : Moldavian, [{mkh} : Mon-Khmer (Other)],
-{lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul} : Multiple
-languages], [{mun} : Munda languages], {nah} : Nahuatl, {nap} : Neapolitan,
-{na} : Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele,
-{ng} : Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
-Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
-{nog} : Nogai, {non} : Old Norse, [{nai} : North American Indian], {no} :
-Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub} :
-Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro, {nzi}
-: Nzima, {oc} : Occitan (post 1500), {oj} : Ojibwa, {or} : Oriya, {om} :
-Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
-languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
-Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
-Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
-(ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
-: Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
-{pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
-Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
-[{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
-Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
-languages], {sam} : Samaritan Aramaic, {se} : Northern Sami, {sma} :
-Southern Sami, {smn} : Inari Sami, {smj} : Lule Sami, {sms} : Skolt Sami,
-[{smi} : Sami languages (Other)], {sm} : Samoan, {sad} : Sandawe, {sg} :
-Sango, {sa} : Sanskrit, {sat} : Santali, {sc} : Sardinian, {sas} : Sasak,
-{sco} : Scots, {sel} : Selkup, [{sem} : Semitic (Other)], {sr} : Serbian,
-{srr} : Serer, {shn} : Shan, {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign
-Languages, {bla} : Siksika, {sd} : Sindhi, {si} : Sinhalese, [{sit} :
-Sino-Tibetan (Other)], [{sio} : Siouan languages], {den} : Slave
-(Athapascan), [{sla} : Slavic (Other)], {sk} : Slovak, {sl} : Slovenian,
-{sog} : Sogdian, {so} : Somali, {son} : Songhai, {snk} : Soninke, {wen} :
-Sorbian languages, {nso} : Northern Sotho, {st} : Southern Sotho, [{sai} :
-South American Indian (Other)], {es} : Spanish, {suk} : Sukuma, {sux} :
-Sumerian, {su} : Sundanese, {sus} : Susu, {sw} : Swahili, {ss} : Swati,
-{sv} : Swedish, {syr} : Syriac, {tl} : Tagalog, {ty} : Tahitian, [{tai} :
-Tai (Other)], {tg} : Tajik, {tmh} : Tamashek, {ta} : Tamil, {i-tao} : Tao,
-{tt} : Tatar, {i-tay} : Tayal, {te} : Telugu, {ter} : Tereno, {tet} :
-Tetum, {th} : Thai, {bo} : Tibetan, {tig} : Tigre, {ti} : Tigrinya, {tem} :
-Timne, {tiv} : Tiv, {tli} : Tlingit, {tpi} : Tok Pisin, {tkl} : Tokelau,
-{tog} : Tonga (Nyasa), {to} : Tonga (Tonga Islands), {tsi} : Tsimshian,
-{ts} : Tsonga, {i-tsu} : Tsou, {tn} : Tswana, {tum} : Tumbuka, [{tup} :
-Tupi languages], {tr} : Turkish, {ota} : Ottoman Turkish (1500-1928), {crh}
-: Crimean Turkish, {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} :
-Twi, {udm} : Udmurt, {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian,
-{umb} : Umbundu, {und} : Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} :
-Vai, {ve} : Venda, {vi} : Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak}
-: Wakashan languages], {wa} : Walloon, {wal} : Walamo, {war} : Waray, {was}
-: Washo, {cy} : Welsh, {wo} : Wolof, {x-...} : Unregistered (Semi-Private
-Use), {xh} : Xhosa, {sah} : Yakut, {yao} : Yao, {yap} : Yapese, {ii} :
-Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
-: Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} : Zhuang, {zu} : Zulu,
-{zun} : Zuni
+=item Importing 
+
+:all
+
+=item EXAMPLES
 
 =item SEE ALSO
 
-=item COPYRIGHT AND DISCLAIMER
-
 =item AUTHOR
 
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
 =back
 
-=head2 I18N::Langinfo - query locale information
+=head2 IO::Zlib - IO:: style interface to L<Compress::Zlib>
 
 =over 4
 
@@ -15874,33 +19838,46 @@ Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
 
 =item DESCRIPTION
 
-=over 4
+=item CONSTRUCTOR
 
-=item EXPORT
+new ( [ARGS] )
 
-=back
+=item OBJECT METHODS
 
-=item SEE ALSO
+open ( FILENAME, MODE ), opened, close, getc, getline, getlines, print (
+ARGS... ), read ( BUF, NBYTES, [OFFSET] ), eof, seek ( OFFSET, WHENCE ),
+tell, setpos ( POS ), getpos ( POS )
 
-=item AUTHOR
+=item USING THE EXTERNAL GZIP
 
-=item COPYRIGHT AND LICENSE
+=item CLASS METHODS
 
-=back
+has_Compress_Zlib, gzip_external, gzip_used, gzip_read_open,
+gzip_write_open
 
-=head2 IO - load various IO modules
+=item DIAGNOSTICS
 
-=over 4
+IO::Zlib::getlines: must be called in list context,
+IO::Zlib::gzopen_external: mode '...' is illegal, IO::Zlib::import: '...'
+is illegal, IO::Zlib::import: ':gzip_external' requires an argument,
+IO::Zlib::import: 'gzip_read_open' requires an argument, IO::Zlib::import:
+'gzip_read' '...' is illegal, IO::Zlib::import: 'gzip_write_open' requires
+an argument, IO::Zlib::import: 'gzip_write_open' '...' is illegal,
+IO::Zlib::import: no Compress::Zlib and no external gzip, IO::Zlib::open:
+needs a filename, IO::Zlib::READ: NBYTES must be specified, IO::Zlib::READ:
+OFFSET is not supported, IO::Zlib::WRITE: too long LENGTH, IO::Zlib::WRITE:
+OFFSET is not supported
 
-=item SYNOPSIS
+=item SEE ALSO
 
-=item DESCRIPTION
+=item HISTORY
 
-=item DEPRECATED
+=item COPYRIGHT
 
 =back
 
-=head2 IO::Dir - supply object methods for directory handles
+=head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
+handles
 
 =over 4
 
@@ -15919,7 +19896,7 @@ rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
 
 =back
 
-=head2 IO::File - supply object methods for filehandles
+=head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
 
 =over 4
 
@@ -15936,13 +19913,16 @@ new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS ), binmode(
 [LAYER] )
 
+=item NOTE
+
 =item SEE ALSO
 
 =item HISTORY
 
 =back
 
-=head2 IO::Handle - supply object methods for I/O handles
+=head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
+handles
 
 =over 4
 
@@ -15971,7 +19951,7 @@ $io->blocking ( [ BOOL ] ), $io->untaint
 
 =back
 
-=head2 IO::Pipe - supply object methods for pipes
+=head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
 
 =over 4
 
@@ -15995,7 +19975,7 @@ reader ([ARGS]), writer ([ARGS]), handles ()
 
 =back
 
-=head2 IO::Poll - Object interface to system poll call
+=head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
 
 =over 4
 
@@ -16016,7 +19996,8 @@ IO ), handles( [ EVENT_MASK ] )
 
 =back
 
-=head2 IO::Seekable - supply seek based methods for I/O objects
+=head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
+I/O objects
 
 =over 4
 
@@ -16034,7 +20015,8 @@ $io->tell
 
 =back
 
-=head2 IO::Select - OO interface to the select system call
+=head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
+call
 
 =over 4
 
@@ -16060,7 +20042,8 @@ count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
 
 =back
 
-=head2 IO::Socket - Object interface to socket communications
+=head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
+communications
 
 =over 4
 
@@ -16085,7 +20068,8 @@ protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
 
 =back
 
-=head2 IO::Socket::INET - Object interface for AF_INET domain sockets
+=head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
+AF_INET domain sockets
 
 =over 4
 
@@ -16114,7 +20098,8 @@ sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
 
 =back
 
-=head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
+=head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
+AF_UNIX domain sockets
 
 =over 4
 
@@ -16138,8 +20123,7 @@ hostpath(), peerpath()
 
 =back
 
-=head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
-handles
+=head2 IPC::Msg - SysV Msg IPC object class
 
 =over 4
 
@@ -16147,8 +20131,11 @@ handles
 
 =item DESCRIPTION
 
-new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
-rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
+=item METHODS
+
+new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
+( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
+FLAGS ] ), stat
 
 =item SEE ALSO
 
@@ -16158,7 +20145,7 @@ rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
 
 =back
 
-=head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
+=head2 IPC::Open2, open2 - open a process for both reading and writing
 
 =over 4
 
@@ -16166,23 +20153,26 @@ rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item WARNING 
 
-new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
+=item SEE ALSO
 
-=item METHODS
+=back
 
-open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS ), binmode(
-[LAYER] )
+=head2 IPC::Open3, open3 - open a process for reading, writing, and error
+handling
 
-=item SEE ALSO
+=over 4
 
-=item HISTORY
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item WARNING
 
 =back
 
-=head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
-handles
+=head2 IPC::Semaphore - SysV Semaphore IPC object class
 
 =over 4
 
@@ -16190,28 +20180,40 @@ handles
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item METHODS
 
-new (), new_from_fd ( FD, MODE )
+new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
+getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
+set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
+, VALUE ), stat
 
-=item METHODS
+=item SEE ALSO
 
-$io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
-$io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
-$io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
-$io->blocking ( [ BOOL ] ), $io->untaint
+=item AUTHOR
 
-=item NOTE
+=item COPYRIGHT
+
+=back
+
+=head2 IPC::SysV - SysV IPC constants
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+ftok( PATH, ID )
 
 =item SEE ALSO
 
-=item BUGS
+=item AUTHORS
 
-=item HISTORY
+=item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
+=head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
 
 =over 4
 
@@ -16219,13 +20221,35 @@ $io->blocking ( [ BOOL ] ), $io->untaint
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item METHODS
 
-new ( [READER, WRITER] )
+new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
+( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
+FLAGS ] ), stat
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
+class
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =item METHODS
 
-reader ([ARGS]), writer ([ARGS]), handles ()
+new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
+getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
+set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
+, VALUE ), stat
 
 =item SEE ALSO
 
@@ -16235,7 +20259,7 @@ reader ([ARGS]), writer ([ARGS]), handles ()
 
 =back
 
-=head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
+=head2 List::Util - A selection of general-utility list subroutines
 
 =over 4
 
@@ -16243,21 +20267,79 @@ reader ([ARGS]), writer ([ARGS]), handles ()
 
 =item DESCRIPTION
 
-=item METHODS
+first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
+BLOCK LIST, shuffle LIST, sum LIST
 
-mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
-IO ), handles( [ EVENT_MASK ] )
+=item KNOWN BUGS
+
+=item SUGGESTED ADDITIONS
+
+=item COPYRIGHT
+
+=back
+
+=head2 List::Utilib::List::Util, List::Util - A selection of
+general-utility list subroutines
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
+BLOCK LIST, shuffle LIST, sum LIST
+
+=item KNOWN BUGS
+
+=item SUGGESTED ADDITIONS
+
+=item COPYRIGHT
+
+=back
+
+=head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
+general-utility scalar subroutines
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
+looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
+set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
+
+=item KNOWN BUGS
+
+=item COPYRIGHT
+
+=item BLATANT PLUG
+
+=back
+
+=head2 Locale::Constants - constants for Locale codes
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
+Locale::Language, Locale::Country, Locale::Script, Locale::Currency
+
 =item AUTHOR
 
 =item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
-I/O objects
+=head2 Locale::Country - ISO codes for country identification (ISO 3166)
 
 =over 4
 
@@ -16265,18 +20347,48 @@ I/O objects
 
 =item DESCRIPTION
 
-$io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
-WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
-$io->tell
+B<alpha-2>, B<alpha-3>, B<numeric>
+
+=item CONVERSION ROUTINES
+
+code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
+country_code2code( CODE, CODESET, CODESET )
+
+=item QUERY ROUTINES
+
+C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
+
+=item SEMI-PRIVATE ROUTINES
+
+=over 4
+
+=item alias_code
+
+=item rename_country
+
+=back
+
+=item EXAMPLES
+
+=item DOMAIN NAMES
+
+=item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
-=item HISTORY
+Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
+3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
+http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
+http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
+
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
-call
+=head2 Locale::Currency - ISO three letter codes for currency
+identification (ISO 4217)
 
 =over 4
 
@@ -16284,17 +20396,24 @@ call
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+XTS, XXX
 
-new ( [ HANDLES ] )
+=item CONVERSION ROUTINES
 
-=item METHODS
+code2currency(), currency2code()
 
-add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
-[ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
-count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
+=item QUERY ROUTINES
 
-=item EXAMPLE
+C<all_currency_codes()>, C<all_currency_names()>
+
+=item EXAMPLES
+
+=item KNOWN BUGS AND LIMITATIONS
+
+=item SEE ALSO
+
+Locale::Country, Locale::Script, ISO 4217:1995,
+http://www.bsi-global.com/iso4217currency
 
 =item AUTHOR
 
@@ -16302,8 +20421,8 @@ count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
 
 =back
 
-=head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
-communications
+=head2 Locale::Language - ISO two letter codes for language identification
+(ISO 639)
 
 =over 4
 
@@ -16311,25 +20430,30 @@ communications
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item CONVERSION ROUTINES
 
-new ( [ARGS] )
+code2language(), language2code()
 
-=item METHODS
+=item QUERY ROUTINES
 
-accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
-protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
+C<all_language_codes()>, C<all_language_names()>
+
+=item EXAMPLES
+
+=item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
+Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
+http://lcweb.loc.gov/standards/iso639-2/langhome.html
+
 =item AUTHOR
 
 =item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
-AF_INET domain sockets
+=head2 Locale::Maketext - framework for localization
 
 =over 4
 
@@ -16337,53 +20461,50 @@ AF_INET domain sockets
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item QUICK OVERVIEW
 
-new ( [ARGS] )
+=item METHODS
 
 =over 4
 
-=item METHODS
+=item Construction Methods
 
-sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
-()
+=item The "maketext" Method
 
-=back
+$lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
 
-=item SEE ALSO
+=item Utility Methods
 
-=item AUTHOR
+$language->quant($number, $singular), $language->quant($number, $singular,
+$plural), $language->quant($number, $singular, $plural, $negative),
+$language->numf($number), $language->sprintf($format, @items),
+$language->language_tag(), $language->encoding()
 
-=item COPYRIGHT
+=item Language Handle Attributes and Internals
 
 =back
 
-=head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
-AF_UNIX domain sockets
-
-=over 4
-
-=item SYNOPSIS
+=item LANGUAGE CLASS HIERARCHIES
 
-=item DESCRIPTION
+=item ENTRIES IN EACH LEXICON
 
-=item CONSTRUCTOR
+=item BRACKET NOTATION
 
-new ( [ARGS] )
+=item AUTO LEXICONS
 
-=item METHODS
+=item CONTROLLING LOOKUP FAILURE
 
-hostpath(), peerpath()
+=item HOW TO USE MAKETEXT
 
 =item SEE ALSO
 
-=item AUTHOR
+=item COPYRIGHT AND DISCLAIMER
 
-=item COPYRIGHT
+=item AUTHOR
 
 =back
 
-=head2 IPC::Msg - SysV Msg IPC object class
+=head2 Locale::Maketext::TPJ13 -- article about software localization
 
 =over 4
 
@@ -16391,36 +20512,37 @@ hostpath(), peerpath()
 
 =item DESCRIPTION
 
-=item METHODS
+=item Localization and Perl: gettext breaks, Maketext fixes
 
-new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
-( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
-FLAGS ] ), stat
+=over 4
 
-=item SEE ALSO
+=item A Localization Horror Story: It Could Happen To You
 
-=item AUTHOR
+=item The Linguistic View
 
-=item COPYRIGHT
+=item Breaking gettext
 
-=back
+=item Replacing gettext
 
-=head2 IPC::Open2, open2 - open a process for both reading and writing
+=item Buzzwords: Abstraction and Encapsulation
 
-=over 4
+=item Buzzword: Isomorphism
 
-=item SYNOPSIS
+=item Buzzword: Inheritance
 
-=item DESCRIPTION
+=item Buzzword: Concision
 
-=item WARNING 
+=item The Devil in the Details
 
-=item SEE ALSO
+=item The Proof in the Pudding: Localizing Web Sites
+
+=item References
 
 =back
 
-=head2 IPC::Open3, open3 - open a process for reading, writing, and error
-handling
+=back
+
+=head2 Locale::Script - ISO codes for script identification (ISO 15924)
 
 =over 4
 
@@ -16428,34 +20550,39 @@ handling
 
 =item DESCRIPTION
 
-=item WARNING
+B<alpha-2>, B<alpha-3>, B<numeric>
+
+=over 4
+
+=item SPECIAL CODES
 
 =back
 
-=head2 IPC::Semaphore - SysV Semaphore IPC object class
+=item CONVERSION ROUTINES
 
-=over 4
+code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
+script_code2code( CODE, CODESET, CODESET )
 
-=item SYNOPSIS
+=item QUERY ROUTINES
 
-=item DESCRIPTION
+C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
 
-=item METHODS
+=item EXAMPLES
 
-new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
-getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
-set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
-, VALUE ), stat
+=item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
+Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
+http://www.evertype.com/standards/iso15924/
+
 =item AUTHOR
 
 =item COPYRIGHT
 
 =back
 
-=head2 IPC::SysV - SysV IPC constants
+=head2 MIME::Base64 - Encoding and decoding of base64 strings
 
 =over 4
 
@@ -16463,17 +20590,23 @@ set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
 
 =item DESCRIPTION
 
-ftok( PATH, ID )
+encode_base64($str), encode_base64($str, $eol);, decode_base64($str)
 
-=item SEE ALSO
+=item DIAGNOSTICS
 
-=item AUTHORS
+Premature end of base64 data, Premature padding of base64 data, Wide
+character in subroutine entry
+
+=item EXAMPLES
 
 =item COPYRIGHT
 
+=item SEE ALSO
+
 =back
 
-=head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
+=head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
+of quoted-printable strings
 
 =over 4
 
@@ -16481,22 +20614,17 @@ ftok( PATH, ID )
 
 =item DESCRIPTION
 
-=item METHODS
+encode_qp($str), encode_qp($str, $eol), encode_qp($str, $eol, $binmode),
+decode_qp($str);
 
-new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
-( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
-FLAGS ] ), stat
+=item COPYRIGHT
 
 =item SEE ALSO
 
-=item AUTHOR
-
-=item COPYRIGHT
-
 =back
 
-=head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
-class
+=head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
+strings
 
 =over 4
 
@@ -16504,22 +20632,16 @@ class
 
 =item DESCRIPTION
 
-=item METHODS
+encode_qp($str), encode_qp($str, $eol), encode_qp($str, $eol, $binmode),
+decode_qp($str);
 
-new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
-getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
-set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
-, VALUE ), stat
+=item COPYRIGHT
 
 =item SEE ALSO
 
-=item AUTHOR
-
-=item COPYRIGHT
-
 =back
 
-=head2 List::Util - A selection of general-utility list subroutines
+=head2 Math::BigFloat - Arbitrary size floating point math package
 
 =over 4
 
@@ -16527,39 +20649,58 @@ set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
 
 =item DESCRIPTION
 
-first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
-BLOCK LIST, shuffle LIST, sum LIST
+=over 4
 
-=item KNOWN BUGS
+=item Canonical notation
 
-=item SUGGESTED ADDITIONS
+=item Output
 
-=item COPYRIGHT
+=item C<mantissa()>, C<exponent()> and C<parts()>
+
+=item Accuracy vs. Precision
+
+=item Rounding
+
+ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
+), fround  ( -$scale ) and fround ( 0 )
 
 =back
 
-=head2 List::Utilib::List::Util, List::Util - A selection of
-general-utility list subroutines
+=item METHODS
 
 =over 4
 
-=item SYNOPSIS
+=item accuracy
 
-=item DESCRIPTION
+=item precision()
 
-first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
-BLOCK LIST, shuffle LIST, sum LIST
+=back
 
-=item KNOWN BUGS
+=item Autocreating constants
 
-=item SUGGESTED ADDITIONS
+=over 4
 
-=item COPYRIGHT
+=item Math library
+
+=item Using Math::BigInt::Lite
 
 =back
 
-=head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
-general-utility scalar subroutines
+=item BUGS
+
+=item CAVEATS
+
+stringify, bstr(), bdiv, Modifying and =, bpow, precision() vs. accuracy()
+
+=item SEE ALSO
+
+=item LICENSE
+
+=item AUTHORS
+
+=back
+
+=head2 Math::BigInt - Arbitrary size integer/float math package
 
 =over 4
 
@@ -16567,204 +20708,206 @@ general-utility scalar subroutines
 
 =item DESCRIPTION
 
-blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
-looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
-set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
+Input, Output
+
+=item METHODS
+
+=over 4
+
+=item config
+
+=item accuracy
+
+=item precision
 
-=item KNOWN BUGS
+=item brsft
 
-=item COPYRIGHT
+=item new
 
-=item BLATANT PLUG
+=item bnan
 
-=back
+=item bzero
 
-=head2 Locale::Constants - constants for Locale codes
+=item binf
 
-=over 4
+=item bone
 
-=item SYNOPSIS
+=item is_one()/is_zero()/is_nan()/is_inf()
 
-=item DESCRIPTION
+=item is_pos()/is_neg()
 
-=item KNOWN BUGS AND LIMITATIONS
+       $x->is_pos();                   # true if > 0
+       $x->is_neg();                   # true if < 0
 
-=item SEE ALSO
+=item is_odd()/is_even()/is_int()
 
-Locale::Language, Locale::Country, Locale::Script, Locale::Currency
+=item bcmp
 
-=item AUTHOR
+=item bacmp
 
-=item COPYRIGHT
+=item sign
 
-=back
+=item digit
 
-=head2 Locale::Country - ISO codes for country identification (ISO 3166)
+=item bneg
 
-=over 4
+=item babs
 
-=item SYNOPSIS
+=item bnorm
 
-=item DESCRIPTION
+=item bnot
 
-B<alpha-2>, B<alpha-3>, B<numeric>
+=item binc
 
-=item CONVERSION ROUTINES
+=item bdec
 
-code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
-country_code2code( CODE, CODESET, CODESET )
+=item badd
 
-=item QUERY ROUTINES
+=item bsub
 
-C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
+=item bmul
 
-=item SEMI-PRIVATE ROUTINES
+=item bdiv
 
-=over 4
+=item bmod
 
-=item alias_code
+=item bmodinv
 
-=item rename_country
+=item bmodpow
 
-=back
+=item bpow
 
-=item EXAMPLES
+=item blsft
 
-=item DOMAIN NAMES
+=item brsft
 
-=item KNOWN BUGS AND LIMITATIONS
+=item band
 
-=item SEE ALSO
+=item bior
 
-Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
-3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
-http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
-http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
+=item bxor
 
-=item AUTHOR
+=item bnot
 
-=item COPYRIGHT
+=item bsqrt
 
-=back
+=item bfac
 
-=head2 Locale::Currency - ISO three letter codes for currency
-identification (ISO 4217)
+=item round
 
-=over 4
+=item bround
 
-=item SYNOPSIS
+=item bfround
 
-=item DESCRIPTION
+=item bfloor
 
-XTS, XXX
+=item bceil
 
-=item CONVERSION ROUTINES
+=item bgcd
 
-code2currency(), currency2code()
+=item blcm
 
-=item QUERY ROUTINES
+=item exponent
 
-C<all_currency_codes()>, C<all_currency_names()>
+=item mantissa
 
-=item EXAMPLES
+=item parts
 
-=item KNOWN BUGS AND LIMITATIONS
+=item copy
 
-=item SEE ALSO
+=item as_int
 
-Locale::Country, Locale::Script, ISO 4217:1995,
-http://www.bsi-global.com/iso4217currency
+=item bsstr
 
-=item AUTHOR
+=item as_hex
 
-=item COPYRIGHT
+=item as_bin
 
 =back
 
-=head2 Locale::Language - ISO two letter codes for language identification
-(ISO 639)
+=item ACCURACY and PRECISION
 
 =over 4
 
-=item SYNOPSIS
+=item Precision P
 
-=item DESCRIPTION
+=item Accuracy A
 
-=item CONVERSION ROUTINES
+=item Fallback F
 
-code2language(), language2code()
+=item Rounding mode R
 
-=item QUERY ROUTINES
+'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
+(significant digits), Setting/Accessing, Creating numbers, Usage,
+Precedence, Overriding globals, Local settings, Rounding, Default values,
+Remarks
 
-C<all_language_codes()>, C<all_language_names()>
+=back
 
-=item EXAMPLES
+=item Infinity and Not a Number
 
-=item KNOWN BUGS AND LIMITATIONS
+oct()/hex(), log(-inf), exp(), cos(), sin(), atan2()
 
-=item SEE ALSO
+=item INTERNALS
 
-Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
-http://lcweb.loc.gov/standards/iso639-2/langhome.html
+=over 4
 
-=item AUTHOR
+=item MATH LIBRARY
 
-=item COPYRIGHT
+=item SIGN
+
+=item mantissa(), exponent() and parts()
 
 =back
 
-=head2 Locale::Maketext - framework for localization
+=item EXAMPLES
 
-=over 4
+  use Math::BigInt;
 
-=item SYNOPSIS
+=item Autocreating constants
 
-=item DESCRIPTION
+=item PERFORMANCE
 
-=item QUICK OVERVIEW
+=over 4
 
-=item METHODS
+=item Alternative math libraries
 
-=over 4
+=item SUBCLASSING
 
-=item Construction Methods
+=back
 
-=item The "maketext" Method
+=item Subclassing Math::BigInt
 
-$lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
+=item UPGRADING
 
-=item Utility Methods
+=over 4
 
-$language->quant($number, $singular), $language->quant($number, $singular,
-$plural), $language->quant($number, $singular, $plural, $negative),
-$language->numf($number), $language->sprintf($format, @items),
-$language->language_tag(), $language->encoding()
+=item Auto-upgrade
 
-=item Language Handle Attributes and Internals
+bsqrt(), div(), blog()
 
 =back
 
-=item LANGUAGE CLASS HIERARCHIES
-
-=item ENTRIES IN EACH LEXICON
+=item BUGS
 
-=item BRACKET NOTATION
+broot() does not work, Out of Memory!, Fails to load Calc on Perl prior
+5.6.0
 
-=item AUTO LEXICONS
+=item CAVEATS
 
-=item CONTROLLING LOOKUP FAILURE
+bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity handling,
+Modifying and =, bpow, Overloading -$x, Mixing different object types,
+bsqrt(), brsft()
 
-=item HOW TO USE MAKETEXT
+=item LICENSE
 
 =item SEE ALSO
 
-=item COPYRIGHT AND DISCLAIMER
-
-=item AUTHOR
+=item AUTHORS
 
 =back
 
-=head2 Locale::Maketext::TPJ13 -- article about software localization
+=head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
 
 =over 4
 
@@ -16772,37 +20915,25 @@ $language->language_tag(), $language->encoding()
 
 =item DESCRIPTION
 
-=item Localization and Perl: gettext breaks, Maketext fixes
-
-=over 4
-
-=item A Localization Horror Story: It Could Happen To You
-
-=item The Linguistic View
-
-=item Breaking gettext
-
-=item Replacing gettext
-
-=item Buzzwords: Abstraction and Encapsulation
-
-=item Buzzword: Isomorphism
+=item STORAGE
 
-=item Buzzword: Inheritance
+=item METHODS
 
-=item Buzzword: Concision
+=item WRAP YOUR OWN
 
-=item The Devil in the Details
+=item LICENSE
 
-=item The Proof in the Pudding: Localizing Web Sites
+This program is free software; you may redistribute it and/or modify it
+under
+the same terms as Perl itself. 
 
-=item References
+=item AUTHORS
 
-=back
+=item SEE ALSO
 
 =back
 
-=head2 Locale::Script - ISO codes for script identification (ISO 15924)
+=head2 Math::BigInt::CalcEmu - Emulate low-level math with BigInt code
 
 =over 4
 
@@ -16810,39 +20941,32 @@ $language->language_tag(), $language->encoding()
 
 =item DESCRIPTION
 
-B<alpha-2>, B<alpha-3>, B<numeric>
+=item METHODS
 
 =over 4
 
-=item SPECIAL CODES
-
-=back
+=item __emu_bxor
 
-=item CONVERSION ROUTINES
+=item __emu_band
 
-code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
-script_code2code( CODE, CODESET, CODESET )
+=item __emu_bior
 
-=item QUERY ROUTINES
+=back
 
-C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
+=item LICENSE
 
-=item EXAMPLES
+This program is free software; you may redistribute it and/or modify it
+under
+the same terms as Perl itself. 
 
-=item KNOWN BUGS AND LIMITATIONS
+=item AUTHORS
 
 =item SEE ALSO
 
-Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
-http://www.evertype.com/standards/iso15924/
-
-=item AUTHOR
-
-=item COPYRIGHT
-
 =back
 
-=head2 MIME::Base64 - Encoding and decoding of base64 strings
+=head2 Math::BigInt::FastCalc - Math::BigInt::Calc with some XS for more
+speed
 
 =over 4
 
@@ -16850,22 +20974,23 @@ http://www.evertype.com/standards/iso15924/
 
 =item DESCRIPTION
 
-encode_base64($str), encode_base64($str, $eol);, decode_base64($str)
+=item STORAGE
 
-=item DIAGNOSTICS
+=item METHODS
 
-Premature end of base64 data, Premature padding of base64 data
+=item LICENSE
 
-=item EXAMPLES
+This program is free software; you may redistribute it and/or modify it
+under
+the same terms as Perl itself. 
 
-=item COPYRIGHT
+=item AUTHORS
 
 =item SEE ALSO
 
 =back
 
-=head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
-of quoted-printable strings
+=head2 Math::BigRat - Arbitrary big rational numbers
 
 =over 4
 
@@ -16873,87 +20998,84 @@ of quoted-printable strings
 
 =item DESCRIPTION
 
-encode_qp($str), encode_qp($str, $eol), encode_qp($str, $eol, $binmode),
-decode_qp($str);
-
-=item COPYRIGHT
+=over 4
 
-=item SEE ALSO
+=item MATH LIBRARY
 
 =back
 
-=head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
-strings
+=item METHODS
 
 =over 4
 
-=item SYNOPSIS
+=item new()
 
-=item DESCRIPTION
+=item numerator()
 
-encode_qp($str), encode_qp($str, $eol), encode_qp($str, $eol, $binmode),
-decode_qp($str);
+=item denominator()
 
-=item COPYRIGHT
+       $d = $x->denominator();
 
-=item SEE ALSO
+=item parts()
 
-=back
+=item as_int()
 
-=head2 Math::BigFloat - Arbitrary size floating point math package
+=item as_hex()
 
-=over 4
+=item as_bin()
 
-=item SYNOPSIS
+=item bfac()
 
-=item DESCRIPTION
+=item blog()
 
-=over 4
+=item bround()/round()/bfround()
 
-=item Canonical notation
+=item bmod()
 
-=item Output
+=item is_one()
 
-=item C<mantissa()>, C<exponent()> and C<parts()>
+=item is_zero()
 
-=item Accuracy vs. Precision
+=item is_pos()
 
-=item Rounding
+=item is_neg()
 
-ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
-), fround  ( -$scale ) and fround ( 0 )
+=item is_int()
 
-=back
+=item is_odd()
 
-=item EXAMPLES
+=item is_even()
 
-  # not ready yet
+=item bceil()
 
-=item Autocreating constants
+=item bfloor()
 
-=over 4
+       $x->bfloor();
 
-=item Math library
+=item bsqrt()
 
-=item Using Math::BigInt::Lite
+       $x->bsqrt();
+
+=item config
 
 =back
 
 =item BUGS
 
-=item CAVEATS
+inf handling (partial), NaN handling (partial), rounding (not implemented
+except for bceil/bfloor), $x ** $y where $y is not an integer, bmod(),
+blog(), bmodinv() and bmodpow() (partial)
 
-stringify, bstr(), bdiv, Modifying and =, bpow
+=item LICENSE
 
 =item SEE ALSO
 
-=item LICENSE
-
 =item AUTHORS
 
 =back
 
-=head2 Math::BigInt - Arbitrary size integer math package
+=head2 Math::Complex - complex numbers and associated mathematical
+functions
 
 =over 4
 
@@ -16961,202 +21083,208 @@ stringify, bstr(), bdiv, Modifying and =, bpow
 
 =item DESCRIPTION
 
-Input, Output
+=item OPERATIONS
 
-=item METHODS
+=item CREATION
+
+=item DISPLAYING
 
 =over 4
 
-=item config
+=item CHANGED IN PERL 5.6
 
-=item accuracy
+=back
 
-=item precision
+=item USAGE
 
-=item brsft
+=item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
 
-=item new
+=item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
 
-=item bnan
+=item BUGS
 
-=item bzero
+=item AUTHORS
 
-=item binf
+=back
 
-=item bone
+=head2 Math::Trig - trigonometric functions
 
-=item is_one()/is_zero()/is_nan()/is_inf()
+=over 4
 
-=item is_pos()/is_neg()
+=item SYNOPSIS
 
-       $x->is_pos();                   # true if >= 0
-       $x->is_neg();                   # true if <  0
+=item DESCRIPTION
 
-=item is_odd()/is_even()/is_int()
+=item TRIGONOMETRIC FUNCTIONS
 
-=item bcmp
+B<tan>
 
-=item bacmp
+=over 4
 
-=item sign
+=item ERRORS DUE TO DIVISION BY ZERO
 
-=item digit
+=item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
 
-=item bneg
+=back
 
-=item babs
+=item PLANE ANGLE CONVERSIONS
 
-=item bnorm
+=item RADIAL COORDINATE CONVERSIONS
 
-=item bnot
+=over 4
 
-=item binc
+=item COORDINATE SYSTEMS
 
-=item bdec
+=item 3-D ANGLE CONVERSIONS
 
-=item badd
+cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
+cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
 
-=item bsub
+=back
 
-=item bmul
+=item GREAT CIRCLE DISTANCES AND DIRECTIONS
 
-=item bdiv
+=item EXAMPLES
 
-=item bmod
+=over 4
 
-=item bmodinv
+=item CAVEAT FOR GREAT CIRCLE FORMULAS
 
-=item bmodpow
+=back
 
-=item bpow
+=item BUGS
 
-=item blsft
+=item AUTHORS
 
-=item brsft
+=back
 
-=item band
+=head2 Memoize - Make functions faster by trading space for time
 
-=item bior
+=over 4
 
-=item bxor
+=item SYNOPSIS
 
-=item bnot
+=item DESCRIPTION
 
-=item bsqrt
+=item DETAILS
 
-=item bfac
+=item OPTIONS
 
-=item round
+=over 4
 
-=item bround
+=item INSTALL
 
-=item bfround
+=item NORMALIZER
 
-=item bfloor
+=item C<SCALAR_CACHE>, C<LIST_CACHE>
 
-=item bceil
+C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
 
-=item bgcd
+=back
 
-=item blcm
+=item OTHER FACILITIES
 
-=item exponent
+=over 4
 
-=item mantissa
+=item C<unmemoize>
 
-=item parts
+=item C<flush_cache>
 
-=item copy
+=back
 
-=item as_int
+=item CAVEATS
 
-=item bsstr
+=item PERSISTENT CACHE SUPPORT
 
-=item as_hex
+=item EXPIRATION SUPPORT
 
-=item as_bin
+=item BUGS
 
-=back
+=item MAILING LIST
 
-=item ACCURACY and PRECISION
+=item AUTHOR
 
-=over 4
+=item COPYRIGHT AND LICENSE
 
-=item Precision P
+=item THANK YOU
 
-=item Accuracy A
+=back
 
-=item Fallback F
+=head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
+Storable use
 
-=item Rounding mode R
+=over 4
 
-'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
-(significant digits), Setting/Accessing, Creating numbers, Usage,
-Precedence, Overriding globals, Local settings, Rounding, Default values,
-Remarks
+=item DESCRIPTION
 
 =back
 
-=item INTERNALS
+=head2 Memoize::Expire - Plug-in module for automatic expiration of
+memoized values
 
 =over 4
 
-=item MATH LIBRARY
+=item SYNOPSIS
 
-=item SIGN
+=item DESCRIPTION
 
-=item mantissa(), exponent() and parts()
+=item INTERFACE
 
-=back
+ TIEHASH,  EXISTS,  STORE
 
-=item EXAMPLES
+=item ALTERNATIVES
 
-  use Math::BigInt;
+=item CAVEATS
 
-=item Autocreating constants
+=item AUTHOR
 
-=item PERFORMANCE
+=item SEE ALSO
 
-=over 4
+=back
 
-=item Alternative math libraries
+=head2 Memoize::ExpireFile - test for Memoize expiration semantics
 
-=item SUBCLASSING
+=over 4
 
-=back
+=item DESCRIPTION
 
-=item Subclassing Math::BigInt
+=back
 
-=item UPGRADING
+=head2 Memoize::ExpireTest - test for Memoize expiration semantics
 
 =over 4
 
-=item Auto-upgrade
+=item DESCRIPTION
 
-bsqrt(), div(), blog()
+=back
+
+=head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
+Storable use
+
+=over 4
+
+=item DESCRIPTION
 
 =back
 
-=item BUGS
+=head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
+Storable use
 
-broot() does not work, Out of Memory!, Fails to load Calc on Perl prior
-5.6.0
+=over 4
 
-=item CAVEATS
+=item DESCRIPTION
 
-bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity handling,
-Modifying and =, bpow, Overloading -$x, Mixing different object types,
-bsqrt(), brsft()
+=back
 
-=item LICENSE
+=head2 Memoize::Storable - store Memoized data in Storable database
 
-=item SEE ALSO
+=over 4
 
-=item AUTHORS
+=item DESCRIPTION
 
 =back
 
-=head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
+=head2 Module::CoreList - what modules shipped with versions of perl
 
 =over 4
 
@@ -17164,25 +21292,19 @@ bsqrt(), brsft()
 
 =item DESCRIPTION
 
-=item STORAGE
-
-=item METHODS
-
-=item WRAP YOUR OWN
+=item CAVEATS
 
-=item LICENSE
+=item HISTORY
 
-This program is free software; you may redistribute it and/or modify it
-under
-the same terms as Perl itself. 
+=item AUTHOR
 
-=item AUTHORS
+=item COPYRIGHT
 
 =item SEE ALSO
 
 =back
 
-=head2 Math::BigInt::CalcEmu - Emulate low-level math with BigInt code
+=head2 NDBM_File - Tied access to ndbm files
 
 =over 4
 
@@ -17190,21 +21312,22 @@ the same terms as Perl itself.
 
 =item DESCRIPTION
 
-=item METHODS
+C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
 
-=item LICENSE
+=item DIAGNOSTICS
 
-This program is free software; you may redistribute it and/or modify it
-under
-the same terms as Perl itself. 
+=over 4
 
-=item AUTHORS
+=item C<ndbm store returned -1, errno 22, key "..." at ...>
 
-=item SEE ALSO
+=back
+
+=item BUGS AND WARNINGS
 
 =back
 
-=head2 Math::BigRat - arbitrarily big rational numbers
+=head2 NEXT - Provide a pseudo-class NEXT (et al) that allows method
+redispatch
 
 =over 4
 
@@ -17214,78 +21337,89 @@ the same terms as Perl itself.
 
 =over 4
 
-=item MATH LIBRARY
+=item Enforcing redispatch
 
-=back
+=item Avoiding repetitions
 
-=item METHODS
+=item Invoking all versions of a method with a single call
 
-=over 4
+=item Using C<EVERY> methods
 
-=item new()
+=back
 
-=item numerator()
+=item AUTHOR
 
-=item denominator()
+=item BUGS AND IRRITATIONS
 
-       $d = $x->denominator();
+=item COPYRIGHT
 
-=item parts()
+=back
 
-=item as_number()
+=head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
 
-=item bfac()
+=over 4
 
-=item blog()
+=item SYNOPSIS
 
-=item bround()/round()/bfround()
+=item DESCRIPTION
 
-=item bmod()
+=item USER METHODS
 
-=item is_one()
+debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
+dataend ()
 
-=item is_zero()
+=item CLASS METHODS
 
-=item is_positive()
+debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
+]), unsupported (), response (), parse_response ( TEXT ), getline (),
+ungetline ( TEXT ), rawdatasend ( DATA ), read_until_dot (), tied_fh ()
 
-=item is_negative()
+=item EXPORTS
 
-=item is_int()
+=item AUTHOR
 
-=item is_odd()
+=item COPYRIGHT
 
-=item is_even()
+=back
 
-=item bceil()
+=head2 Net::Config - Local configuration data for libnet
 
-=item bfloor()
+=over 4
 
-       $x->bfloor();
+=item SYNOPSYS
 
-=item bsqrt()
+=item DESCRIPTION
 
-       $x->bsqrt();
+=item METHODS
 
-=item config
+requires_firewall HOST
+
+=item NetConfig VALUES
+
+nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
+time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
+ftp_int_passive, local_netmask, test_hosts, test_exists
 
 =back
 
-=item BUGS
+=head2 Net::Domain - Attempt to evaluate the current host's internet name
+and domain
 
-inf handling (partial), NaN handling (partial), rounding (not implemented
-except for bceil/bfloor), $x ** $y where $y is not an integer, bmod(),
-blog(), bmodinv() and bmodpow() (partial)
+=over 4
 
-=item LICENSE
+=item SYNOPSIS
 
-=item SEE ALSO
+=item DESCRIPTION
 
-=item AUTHORS
+hostfqdn (), domainname (), hostname (), hostdomain ()
+
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=head2 Math::Complex - complex numbers and associated mathematical
-functions
+=head2 Net::FTP - FTP Client class
 
 =over 4
 
@@ -17293,31 +21427,62 @@ functions
 
 =item DESCRIPTION
 
-=item OPERATIONS
+=item OVERVIEW
 
-=item CREATION
+=item CONSTRUCTOR
+
+new ([ HOST ] [, OPTIONS ])
+
+=item METHODS
 
-=item STRINGIFICATION
+login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
+site (ARGS), ascii, binary, rename ( OLDNAME, NEWNAME ), delete ( FILENAME
+), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR [,
+RECURSE ]), mkdir ( DIR [, RECURSE ]), alloc ( SIZE [, RECORD_SIZE] ), ls (
+[ DIR ] ), dir ( [ DIR ] ), get ( REMOTE_FILE [, LOCAL_FILE [, WHERE]] ),
+put ( LOCAL_FILE [, REMOTE_FILE ] ), put_unique ( LOCAL_FILE [, REMOTE_FILE
+] ), append ( LOCAL_FILE [, REMOTE_FILE ] ), unique_name (), mdtm ( FILE ),
+size ( FILE ), supported ( CMD ), hash ( [FILEHANDLE_GLOB_REF],[
+BYTES_PER_HASH_MARK] ), nlst ( [ DIR ] ), list ( [ DIR ] ), retr ( FILE ),
+stor ( FILE ), stou ( FILE ), appe ( FILE ), port ( [ PORT ] ), pasv (),
+pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_xfer_unique (
+SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait ( NON_PASV_SERVER ),
+abort (), quit ()
 
 =over 4
 
-=item CHANGED IN PERL 5.6
+=item Methods for the adventurous
+
+quot (CMD [,ARGS])
 
 =back
 
-=item USAGE
+=item THE dataconn CLASS
 
-=item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
+read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
+bytes_read (), abort (), close ()
 
-=item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
+=item UNIMPLEMENTED
 
-=item BUGS
+B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
 
-=item AUTHORS
+=item REPORTING BUGS
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=item USE EXAMPLES
+
+http://www.csh.rit.edu/~adam/Progs/
+
+=item CREDITS
+
+=item COPYRIGHT
 
 =back
 
-=head2 Math::Trig - trigonometric functions
+=head2 Net::NNTP - NNTP Client class
 
 =over 4
 
@@ -17325,112 +21490,144 @@ functions
 
 =item DESCRIPTION
 
-=item TRIGONOMETRIC FUNCTIONS
+=item CONSTRUCTOR
 
-B<tan>
+new ( [ HOST ] [, OPTIONS ])
+
+=item METHODS
+
+article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
+[ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
+MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
+), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
+postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
+DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
+post ( [ MESSAGE ] ), postfh (), slave (), quit ()
 
 =over 4
 
-=item ERRORS DUE TO DIVISION BY ZERO
+=item Extension methods
 
-=item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
+newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
+overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
+), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
+MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
+GROUP ] ), reader
 
 =back
 
-=item PLANE ANGLE CONVERSIONS
+=item UNSUPPORTED
 
-=item RADIAL COORDINATE CONVERSIONS
+=item DEFINITIONS
 
-=over 4
+MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
 
-=item COORDINATE SYSTEMS
+=item SEE ALSO
 
-=item 3-D ANGLE CONVERSIONS
+=item AUTHOR
 
-cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
-cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
+=item COPYRIGHT
 
 =back
 
-=item GREAT CIRCLE DISTANCES AND DIRECTIONS
-
-=item EXAMPLES
+=head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
 
 =over 4
 
-=item CAVEAT FOR GREAT CIRCLE FORMULAS
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item BUGS
+=item CONSTRUCTOR
 
-=item AUTHORS
+new ( [ HOST ] [, OPTIONS ] 0
 
-=back
+=item METHODS
 
-=head2 Memoize - Make functions faster by trading space for time
+auth ( USERNAME, PASSWORD ), user ( USER ), pass ( PASS ), login ( [ USER
+[, PASS ]] ), apop ( [ USER [, PASS ]] ), banner (), capa (),  capabilities
+(), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM [, FH ]
+), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [ MSGNUM ]
+), delete ( MSGNUM ), reset (), quit ()
 
-=over 4
+=item NOTES
 
-=item SYNOPSIS
+=item SEE ALSO
 
-=item DESCRIPTION
+=item AUTHOR
 
-=item DETAILS
+=item COPYRIGHT
 
-=item OPTIONS
+=back
+
+=head2 Net::Ping - check a remote host for reachability
 
 =over 4
 
-=item INSTALL
+=item SYNOPSIS
 
-=item NORMALIZER
+=item DESCRIPTION
 
-=item C<SCALAR_CACHE>, C<LIST_CACHE>
+=over 4
 
-C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
+=item Functions
+
+Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device [, $tos
+]]]]]);, $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
+$p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
+$p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
+[ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
+[, $timeout]);
 
 =back
 
-=item OTHER FACILITIES
+=item NOTES
 
-=over 4
+=item INSTALL
 
-=item C<unmemoize>
+=item BUGS
+
+=item AUTHORS
 
-=item C<flush_cache>
+=item COPYRIGHT
 
 =back
 
-=item CAVEATS
+=head2 Net::SMTP - Simple Mail Transfer Protocol Client
 
-=item PERSISTENT CACHE SUPPORT
+=over 4
 
-=item EXPIRATION SUPPORT
+=item SYNOPSIS
 
-=item BUGS
+=item DESCRIPTION
 
-=item MAILING LIST
+=item EXAMPLES
 
-=item AUTHOR
+=item CONSTRUCTOR
 
-=item COPYRIGHT AND LICENSE
+new ( [ HOST ] [, OPTIONS ] )
 
-=item THANK YOU
+=item METHODS
 
-=back
+banner (), domain (), hello ( DOMAIN ), host (), etrn ( DOMAIN ), auth (
+USERNAME, PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ),
+send_or_mail ( ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient (
+ADDRESS [, ADDRESS, [...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]]
+), cc ( ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ),
+data ( [ DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [
+$subject ] ), quit ()
 
-=head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
-Storable use
+=item ADDRESSES
 
-=over 4
+=item SEE ALSO
 
-=item DESCRIPTION
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=head2 Memoize::Expire - Plug-in module for automatic expiration of
-memoized values
+=head2 Net::Time - time and daytime network client interface
 
 =over 4
 
@@ -17438,162 +21635,152 @@ memoized values
 
 =item DESCRIPTION
 
-=item INTERFACE
-
- TIEHASH,  EXISTS,  STORE
-
-=item ALTERNATIVES
-
-=item CAVEATS
+inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
+PROTOCOL [, TIMEOUT]]])
 
 =item AUTHOR
 
-=item SEE ALSO
+=item COPYRIGHT
 
 =back
 
-=head2 Memoize::ExpireFile - test for Memoize expiration semantics
+=head2 Net::hostent - by-name interface to Perl's built-in gethost*()
+functions
 
 =over 4
 
-=item DESCRIPTION
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=head2 Memoize::ExpireTest - test for Memoize expiration semantics
+=item EXAMPLES
 
-=over 4
+=item NOTE
 
-=item DESCRIPTION
+=item AUTHOR
 
 =back
 
-=head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
-Storable use
+=head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
 
 =over 4
 
 =item DESCRIPTION
 
-=back
-
-=head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
-Storable use
-
 =over 4
 
-=item DESCRIPTION
+=item Where to get this document
+
+=item How to contribute to this document
 
 =back
 
-=head2 Memoize::Storable - store Memoized data in Storable database
+=item Author and Copyright Information
 
 =over 4
 
-=item DESCRIPTION
+=item Disclaimer
 
 =back
 
-=head2 NDBM_File - Tied access to ndbm files
+=item Obtaining and installing libnet
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item What is libnet ?
 
-C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
+=item Which version of perl do I need ?
 
-=item DIAGNOSTICS
+=item What other modules do I need ?
 
-=over 4
+=item What machines support libnet ?
 
-=item C<ndbm store returned -1, errno 22, key "..." at ...>
+=item Where can I get the latest libnet release
 
 =back
 
-=item BUGS AND WARNINGS
+=item Using Net::FTP
 
-=back
+=over 4
 
-=head2 NEXT - Provide a pseudo-class NEXT (et al) that allows method
-redispatch
+=item How do I download files from an FTP server ?
 
-=over 4
+=item How do I transfer files in binary mode ?
 
-=item SYNOPSIS
+=item How can I get the size of a file on a remote FTP server ?
 
-=item DESCRIPTION
+=item How can I get the modification time of a file on a remote FTP server
+?
 
-=over 4
+=item How can I change the permissions of a file on a remote server ?
 
-=item Enforcing redispatch
+=item Can I do a reget operation like the ftp command ?
 
-=item Avoiding repetitions
+=item How do I get a directory listing from an FTP server ?
 
-=item Invoking all versions of a method with a single call
+=item Changing directory to "" does not fail ?
 
-=item Using C<EVERY> methods
+=item I am behind a SOCKS firewall, but the Firewall option does not work ?
 
-=back
+=item I am behind an FTP proxy firewall, but cannot access machines outside
+?
 
-=item AUTHOR
+=item My ftp proxy firewall does not listen on port 21
 
-=item BUGS AND IRRITATIONS
+=item Is it possible to change the file permissions of a file on an FTP
+server ?
 
-=item COPYRIGHT
+=item I have seen scripts call a method message, but cannot find it
+documented ?
+
+=item Why does Net::FTP not implement mput and mget methods
 
 =back
 
-=head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
+=item Using Net::SMTP
 
 =over 4
 
-=item SYNOPSIS
+=item Why can't the part of an Email address after the @ be used as the
+hostname ?
 
-=item DESCRIPTION
+=item Why does Net::SMTP not do DNS MX lookups ?
 
-=item USER METHODS
+=item The verify method always returns true ?
 
-debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
-dataend ()
+=back
 
-=item CLASS METHODS
+=item Debugging scripts
 
-debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
-]), unsupported (), response (), parse_response ( TEXT ), getline (),
-ungetline ( TEXT ), rawdatasend ( DATA ), read_until_dot (), tied_fh ()
+=over 4
 
-=item EXPORTS
+=item How can I debug my scripts that use Net::* modules ?
 
-=item AUTHOR
+=back
 
-=item COPYRIGHT
+=item AUTHOR AND COPYRIGHT
 
 =back
 
-=head2 Net::Config - Local configuration data for libnet
+=head2 Net::netent - by-name interface to Perl's built-in getnet*()
+functions
 
 =over 4
 
-=item SYNOPSYS
+=item SYNOPSIS
 
 =item DESCRIPTION
 
-=item METHODS
-
-requires_firewall HOST
+=item EXAMPLES
 
-=item NetConfig VALUES
+=item NOTE
 
-nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
-time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
-ftp_int_pasive, local_netmask, test_hosts, test_exists
+=item AUTHOR
 
 =back
 
-=head2 Net::Domain - Attempt to evaluate the current host's internet name
-and domain
+=head2 Net::protoent - by-name interface to Perl's built-in getproto*()
+functions
 
 =over 4
 
@@ -17601,15 +21788,14 @@ and domain
 
 =item DESCRIPTION
 
-hostfqdn (), hostname (), hostdomain ()
+=item NOTE
 
 =item AUTHOR
 
-=item COPYRIGHT
-
 =back
 
-=head2 Net::FTP - FTP Client class
+=head2 Net::servent - by-name interface to Perl's built-in getserv*()
+functions
 
 =over 4
 
@@ -17617,62 +21803,44 @@ hostfqdn (), hostname (), hostdomain ()
 
 =item DESCRIPTION
 
-=item OVERVIEW
+=item EXAMPLES
 
-=item CONSTRUCTOR
+=item NOTE
 
-new ([ HOST ] [, OPTIONS ])
+=item AUTHOR
 
-=item METHODS
+=back
 
-login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
-site (ARGS), ascii, binary, rename ( OLDNAME, NEWNAME ), delete ( FILENAME
-), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR [,
-RECURSE ]), mkdir ( DIR [, RECURSE ]), alloc ( SIZE [, RECORD_SIZE] ), ls (
-[ DIR ] ), dir ( [ DIR ] ), get ( REMOTE_FILE [, LOCAL_FILE [, WHERE]] ),
-put ( LOCAL_FILE [, REMOTE_FILE ] ), put_unique ( LOCAL_FILE [, REMOTE_FILE
-] ), append ( LOCAL_FILE [, REMOTE_FILE ] ), unique_name (), mdtm ( FILE ),
-size ( FILE ), supported ( CMD ), hash ( [FILEHANDLE_GLOB_REF],[
-BYTES_PER_HASH_MARK] ), nlst ( [ DIR ] ), list ( [ DIR ] ), retr ( FILE ),
-stor ( FILE ), stou ( FILE ), appe ( FILE ), port ( [ PORT ] ), pasv (),
-pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_xfer_unique (
-SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait ( NON_PASV_SERVER ),
-abort (), quit ()
+=head2 Netrc, Net::Netrc - OO interface to users netrc file
 
 =over 4
 
-=item Methods for the adventurous
+=item SYNOPSIS
 
-quot (CMD [,ARGS])
+=item DESCRIPTION
 
-=back
+=item THE .netrc FILE
 
-=item THE dataconn CLASS
+machine name, default, login name, password string, account string, macdef
+name
 
-read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
-bytes_read (), abort (), close ()
+=item CONSTRUCTOR
 
-=item UNIMPLEMENTED
+lookup ( MACHINE [, LOGIN ])
 
-B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
+=item METHODS
 
-=item REPORTING BUGS
+login (), password (), account (), lpa ()
 
 =item AUTHOR
 
 =item SEE ALSO
 
-=item USE EXAMPLES
-
-http://www.csh.rit.edu/~adam/Progs/
-
-=item CREDITS
-
 =item COPYRIGHT
 
 =back
 
-=head2 Net::NNTP - NNTP Client class
+=head2 O - Generic interface to Perl Compiler backends
 
 =over 4
 
@@ -17680,47 +21848,39 @@ http://www.csh.rit.edu/~adam/Progs/
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item CONVENTIONS
 
-new ( [ HOST ] [, OPTIONS ])
+=item IMPLEMENTATION
 
-=item METHODS
+=item BUGS
 
-article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
-[ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
-MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
-), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
-postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
-DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
-post ( [ MESSAGE ] ), postfh (), slave (), quit ()
+=item AUTHOR
 
-=over 4
+=back
 
-=item Extension methods
+=head2 ODBM_File - Tied access to odbm files
 
-newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
-overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
-), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
-MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
-GROUP ] ), reader
+=over 4
 
-=back
+=item SYNOPSIS
 
-=item UNSUPPORTED
+=item DESCRIPTION
+
+C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
 
-=item DEFINITIONS
+=item DIAGNOSTICS
 
-MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
+=over 4
 
-=item SEE ALSO
+=item C<odbm store returned -1, errno 22, key "..." at ...>
 
-=item AUTHOR
+=back
 
-=item COPYRIGHT
+=item BUGS AND WARNINGS
 
 =back
 
-=head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
+=head2 Opcode - Disable named opcodes when compiling perl code
 
 =over 4
 
@@ -17728,29 +21888,45 @@ MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item NOTE
 
-new ( [ HOST ] [, OPTIONS ] 0
+=item WARNING
 
-=item METHODS
+=item Operator Names and Operator Lists
 
-auth ( USERNAME, PASSWORD ), user ( USER ), pass ( PASS ), login ( [ USER
-[, PASS ]] ), apop ( [ USER [, PASS ]] ), banner (), capa (),  capabilities
-(), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM [, FH ]
-), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [ MSGNUM ]
-), delete ( MSGNUM ), reset (), quit ()
+an operator name (opname), an operator tag name (optag), a negated opname
+or optag, an operator set (opset)
 
-=item NOTES
+=item Opcode Functions
 
-=item SEE ALSO
+opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
+full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
+define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
+opdump (PAT)
 
-=item AUTHOR
+=item Manipulating Opsets
 
-=item COPYRIGHT
+=item TO DO (maybe)
 
 =back
 
-=head2 Net::Ping - check a remote host for reachability
+=over 4
+
+=item Predefined Opcode Tags
+
+:base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
+:base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
+:filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
+:dangerous
+
+=item SEE ALSO
+
+=item AUTHORS
+
+=back
+
+=head2 Opcode::Safe, Safe - Compile and execute code in restricted
+compartments
 
 =over 4
 
@@ -17758,32 +21934,45 @@ auth ( USERNAME, PASSWORD ), user ( USER ), pass ( PASS ), login ( [ USER
 
 =item DESCRIPTION
 
+a new namespace, an operator mask
+
+=item WARNING
+
 =over 4
 
-=item Functions
+=item RECENT CHANGES
 
-Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device [, $tos
-]]]]]);, $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
-$p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
-$p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
-[ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
-[, $timeout]);
+=item Methods in class Safe
+
+permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
+...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
+(PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
+root (NAMESPACE), mask (MASK)
+
+=item Some Safety Issues
+
+Memory, CPU, Snooping, Signals, State Changes
+
+=item AUTHOR
 
 =back
 
-=item NOTES
+=back
 
-=item INSTALL
+=head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
+compiling
 
-=item BUGS
+=over 4
 
-=item AUTHORS
+=item SYNOPSIS 
 
-=item COPYRIGHT
+=item DESCRIPTION
+
+=item SEE ALSO
 
 =back
 
-=head2 Net::SMTP - Simple Mail Transfer Protocol Client
+=head2 POSIX - Perl interface to IEEE Std 1003.1
 
 =over 4
 
@@ -17791,169 +21980,188 @@ $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
 
 =item DESCRIPTION
 
-=item EXAMPLES
+=item NOTE
 
-=item CONSTRUCTOR
+=item CAVEATS
 
-new ( [ HOST ] [, OPTIONS ] )
+=item FUNCTIONS
 
-=item METHODS
+_exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
+atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
+clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
+cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
+execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
+fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
+fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
+fstat, fsync, ftell, fwrite, getc, getchar, getcwd, getegid, getenv,
+geteuid, getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid,
+getppid, getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha,
+isatty, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
+isupper, isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime,
+log, log10, longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr,
+memcmp, memcpy, memmove, memset, mkdir, mkfifo, mktime, modf, nice,
+offsetof, open, opendir, pathconf, pause, perror, pipe, pow, printf, putc,
+putchar, puts, qsort, raise, rand, read, readdir, realloc, remove, rename,
+rewind, rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid,
+setsid, setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
+sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
+strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
+strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
+strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
+tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
+tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
+unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
+wctomb, write
 
-banner (), domain (), hello ( DOMAIN ), host (), etrn ( DOMAIN ), auth (
-USERNAME, PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ),
-send_or_mail ( ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient (
-ADDRESS [, ADDRESS, [...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]]
-), cc ( ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ),
-data ( [ DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [
-$subject ] ), quit ()
+=item CLASSES
 
-=item ADDRESSES
+=over 4
 
-=item SEE ALSO
+=item POSIX::SigAction
 
-=item AUTHOR
+new, handler, mask, flags, safe
 
-=item COPYRIGHT
+=item POSIX::SigRt
 
-=back
+%SIGRT, SIGRTMIN, SIGRTMAX
 
-=head2 Net::Time - time and daytime network client interface
+=item POSIX::SigSet
 
-=over 4
+new, addset, delset, emptyset, fillset, ismember
 
-=item SYNOPSIS
+=item POSIX::Termios
 
-=item DESCRIPTION
+new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
+getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
+setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
+field values, c_cflag field values, c_iflag field values, c_lflag field
+values, c_oflag field values
 
-inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
-PROTOCOL [, TIMEOUT]]])
+=back
 
-=item AUTHOR
+=item PATHNAME CONSTANTS
 
-=item COPYRIGHT
+Constants
 
-=back
+=item POSIX CONSTANTS
 
-=head2 Net::hostent - by-name interface to Perl's built-in gethost*()
-functions
+Constants
 
-=over 4
+=item SYSTEM CONFIGURATION
 
-=item SYNOPSIS
+Constants
 
-=item DESCRIPTION
+=item ERRNO
 
-=item EXAMPLES
+Constants
 
-=item NOTE
+=item FCNTL
 
-=item AUTHOR
+Constants
 
-=back
+=item FLOAT
 
-=head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
+Constants
 
-=over 4
+=item LIMITS
 
-=item DESCRIPTION
+Constants
 
-=over 4
+=item LOCALE
 
-=item Where to get this document
+Constants
 
-=item How to contribute to this document
+=item MATH
 
-=back
+Constants
 
-=item Author and Copyright Information
+=item SIGNAL
 
-=over 4
+Constants
 
-=item Disclaimer
+=item STAT
 
-=back
+Constants, Macros
 
-=item Obtaining and installing libnet
+=item STDLIB
 
-=over 4
+Constants
 
-=item What is libnet ?
+=item STDIO
 
-=item Which version of perl do I need ?
+Constants
 
-=item What other modules do I need ?
+=item TIME
 
-=item What machines support libnet ?
+Constants
 
-=item Where can I get the latest libnet release
+=item UNISTD
 
-=back
+Constants
 
-=item Using Net::FTP
+=item WAIT
 
-=over 4
+Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
+WTERMSIG, WIFSTOPPED, WSTOPSIG
 
-=item How do I download files from an FTP server ?
+=back
 
-=item How do I transfer files in binary mode ?
+=head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
+name space
 
-=item How can I get the size of a file on a remote FTP server ?
+=over 4
 
-=item How can I get the modification time of a file on a remote FTP server
-?
+=item SYNOPSIS
 
-=item How can I change the permissions of a file on a remote server ?
+=item DESCRIPTION
 
-=item Can I do a reget operation like the ftp command ?
+:unix, :stdio, :perlio, :crlf, :mmap, :utf8, :bytes, :raw, :pop, :win32
 
-=item How do I get a directory listing from an FTP server ?
+=over 4
 
-=item Changing directory to "" does not fail ?
+=item Custom Layers
 
-=item I am behind a SOCKS firewall, but the Firewall option does not work ?
+:encoding, :via
 
-=item I am behind an FTP proxy firewall, but cannot access machines outside
-?
+=item Alternatives to raw
 
-=item My ftp proxy firewall does not listen on port 21
+=item Defaults and how to override them
 
-=item Is it possible to change the file permissions of a file on an FTP
-server ?
+=item Querying the layers of filehandles
 
-=item I have seen scripts call a method message, but cannot find it
-documented ?
+=back
+
+=item AUTHOR
 
-=item Why does Net::FTP not implement mput and mget methods
+=item SEE ALSO
 
 =back
 
-=item Using Net::SMTP
+=head2 PerlIO::encoding - encoding layer
 
 =over 4
 
-=item Why can't the part of an Email address after the @ be used as the
-hostname ?
+=item SYNOPSIS
 
-=item Why does Net::SMTP not do DNS MX lookups ?
+=item DESCRIPTION
 
-=item The verify method always returns true ?
+=item SEE ALSO
 
 =back
 
-=item Debugging scripts
+=head2 PerlIO::scalar - in-memory IO, scalar IO
 
 =over 4
 
-=item How can I debug my scripts that use Net::* modules ?
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item AUTHOR AND COPYRIGHT
+=item IMPLEMENTATION NOTE
 
 =back
 
-=head2 Net::netent - by-name interface to Perl's built-in getnet*()
-functions
+=head2 PerlIO::via - Helper class for PerlIO layers implemented in perl
 
 =over 4
 
@@ -17961,16 +22169,28 @@ functions
 
 =item DESCRIPTION
 
+=item EXPECTED METHODS
+
+$class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
+$obj->UTF8($bellowFlag,[$fh]), $obj->OPEN($path,$mode[,$fh]),
+$obj->BINMODE([,$fh]), $obj->FDOPEN($fd[,$fh]),
+$obj->SYSOPEN($path,$imode,$perm,[,$fh]), $obj->FILENO($fh),
+$obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
+$obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
+$obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
+$obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
+
 =item EXAMPLES
 
-=item NOTE
+=over 4
 
-=item AUTHOR
+=item Example - a Hexadecimal Handle
 
 =back
 
-=head2 Net::protoent - by-name interface to Perl's built-in getproto*()
-functions
+=back
+
+=head2 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
 
 =over 4
 
@@ -17978,77 +22198,99 @@ functions
 
 =item DESCRIPTION
 
-=item NOTE
+=item REQUIRED MODULES
 
-=item AUTHOR
+=item SEE ALSO
+
+=item ACKNOWLEDGEMENTS
+
+=item COPYRIGHT
 
 =back
 
-=head2 Net::servent - by-name interface to Perl's built-in getserv*()
-functions
+=head2 Pod::Checker, podchecker() - check pod documents for syntax errors
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
+=item OPTIONS/ARGUMENTS
 
-=item EXAMPLES
+=over 4
 
-=item NOTE
+=item podchecker()
 
-=item AUTHOR
+B<-warnings> =E<gt> I<val>
 
 =back
 
-=head2 Netrc, Net::Netrc - OO interface to users netrc file
+=item DESCRIPTION
 
-=over 4
+=item DIAGNOSTICS
 
-=item SYNOPSIS
+=over 4
 
-=item DESCRIPTION
+=item Errors
 
-=item THE .netrc FILE
+empty =headn, =over on line I<N> without closing =back, =item without
+previous =over, =back without previous =over, No argument for =begin, =end
+without =begin, Nested =begin's, =for without formatter specification,
+unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
+interior-sequence "I<SEQ>", nested commands
+I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
+number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
+empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
+after =back
 
-machine name, default, login name, password string, account string, macdef
-name
+=item Warnings
 
-=item CONSTRUCTOR
+multiple occurrence of link target I<name>, line containing nothing but
+whitespace in paragraph, file does not start with =head, previous =item has
+no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
+vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
+items in =over, No argument for =item, empty section in previous paragraph,
+Verbatim paragraph in NAME section, =headI<n> without preceding higher
+level
 
-lookup ( MACHINE [, LOGIN ])
+=item Hyperlinks
 
-=item METHODS
+ignoring leading/trailing whitespace in link, (section) in '$page'
+deprecated, alternative text/node '%s' contains non-escaped | or /
 
-login (), password (), account (), lpa ()
+=back
 
-=item AUTHOR
+=item RETURN VALUE
 
-=item SEE ALSO
+=item EXAMPLES
 
-=item COPYRIGHT
+=item INTERFACE
 
 =back
 
-=head2 O - Generic interface to Perl Compiler backends
+C<Pod::Checker-E<gt>new( %options )>
 
-=over 4
+C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
+@args )>
 
-=item SYNOPSIS
+C<$checker-E<gt>num_errors()>
 
-=item DESCRIPTION
+C<$checker-E<gt>num_warnings()>
 
-=item CONVENTIONS
+C<$checker-E<gt>name()>
 
-=item IMPLEMENTATION
+C<$checker-E<gt>node()>
 
-=item BUGS
+C<$checker-E<gt>idx()>
+
+C<$checker-E<gt>hyperlink()>
+
+=over 4
 
 =item AUTHOR
 
 =back
 
-=head2 ODBM_File - Tied access to odbm files
+=head2 Pod::Escapes -- for resolving Pod EE<lt>...E<gt> sequences
 
 =over 4
 
@@ -18056,21 +22298,23 @@ login (), password (), account (), lpa ()
 
 =item DESCRIPTION
 
-C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
+=item GOODIES
 
-=item DIAGNOSTICS
+e2char($e_content), e2charnum($e_content), $Name2character{I<name>},
+$Name2character_number{I<name>}, $Latin1Code_to_fallback{I<integer>},
+$Latin1Char_to_fallback{I<character>}, $Code2USASCII{I<integer>}
 
-=over 4
+=item CAVEATS
 
-=item C<odbm store returned -1, errno 22, key "..." at ...>
+=item SEE ALSO
 
-=back
+=item COPYRIGHT AND DISCLAIMERS
 
-=item BUGS AND WARNINGS
+=item AUTHOR
 
 =back
 
-=head2 Opcode - Disable named opcodes when compiling perl code
+=head2 Pod::Find - find POD documents in directory trees
 
 =over 4
 
@@ -18078,453 +22322,425 @@ C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
 
 =item DESCRIPTION
 
-=item NOTE
-
-=item WARNING
+=back
 
-=item Operator Names and Operator Lists
+=over 4
 
-an operator name (opname), an operator tag name (optag), a negated opname
-or optag, an operator set (opset)
+=item C<pod_find( { %opts } , @directories )>
 
-=item Opcode Functions
+C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
+1>
 
-opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
-full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
-define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
-opdump (PAT)
+=back
 
-=item Manipulating Opsets
+=over 4
 
-=item TO DO (maybe)
+=item C<simplify_name( $str )>
 
 =back
 
 =over 4
 
-=item Predefined Opcode Tags
+=item C<pod_where( { %opts }, $pod )>
 
-:base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
-:base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
-:filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
-:dangerous
+C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
+1>
 
-=item SEE ALSO
+=back
 
-=item AUTHORS
+=over 4
 
-=back
+=item C<contains_pod( $file , $verbose )>
 
-=head2 Opcode::Safe, Safe - Compile and execute code in restricted
-compartments
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item AUTHOR
 
-=item DESCRIPTION
+=item SEE ALSO
 
-a new namespace, an operator mask
+=back
 
-=item WARNING
+=head2 Pod::Html - module to convert pod files to HTML
 
 =over 4
 
-=item RECENT CHANGES
+=item SYNOPSIS
 
-=item Methods in class Safe
+=item DESCRIPTION
 
-permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
-...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
-(PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
-root (NAMESPACE), mask (MASK)
+=item ARGUMENTS
 
-=item Some Safety Issues
+backlink, cachedir, css, flush, header, help, hiddendirs, htmldir,
+htmlroot, index, infile, libpods, netscape, outfile, podpath, podroot,
+quiet, recurse, title, verbose
 
-Memory, CPU, Snooping, Signals, State Changes
+=item EXAMPLE
+
+=item ENVIRONMENT
 
 =item AUTHOR
 
-=back
+=item SEE ALSO
+
+=item COPYRIGHT
 
 =back
 
-=head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
-compiling
+=head2 Pod::InputObjects - objects representing POD input paragraphs,
+commands, etc.
 
 =over 4
 
-=item SYNOPSIS 
+=item SYNOPSIS
+
+=item REQUIRES
+
+=item EXPORTS
 
 =item DESCRIPTION
 
-=item SEE ALSO
+package B<Pod::InputSource>, package B<Pod::Paragraph>, package
+B<Pod::InteriorSequence>, package B<Pod::ParseTree>
 
 =back
 
-=head2 POSIX - Perl interface to IEEE Std 1003.1
-
 =over 4
 
-=item SYNOPSIS
+=item B<Pod::InputSource>
 
-=item DESCRIPTION
+=back
 
-=item NOTE
+=over 4
+
+=item B<new()>
 
-=item CAVEATS 
+=back
 
-=item FUNCTIONS
+=over 4
 
-_exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
-atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
-clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
-cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
-execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
-fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
-fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
-fstat, fsync, ftell, fwrite, getc, getchar, getcwd, getegid, getenv,
-geteuid, getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid,
-getppid, getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha,
-isatty, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
-isupper, isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime,
-log, log10, longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr,
-memcmp, memcpy, memmove, memset, mkdir, mkfifo, mktime, modf, nice,
-offsetof, open, opendir, pathconf, pause, perror, pipe, pow, printf, putc,
-putchar, puts, qsort, raise, rand, read, readdir, realloc, remove, rename,
-rewind, rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid,
-setsid, setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
-sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
-strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
-strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
-strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
-tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
-tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
-unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
-wctomb, write
+=item B<name()>
 
-=item CLASSES
+=back
 
 =over 4
 
-=item POSIX::SigAction
+=item B<handle()>
 
-new, handler, mask, flags, safe
+=back
 
-=item POSIX::SigSet
+=over 4
 
-new, addset, delset, emptyset, fillset, ismember
+=item B<was_cutting()>
 
-=item POSIX::Termios
+=back
 
-new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
-getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
-setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
-field values, c_cflag field values, c_iflag field values, c_lflag field
-values, c_oflag field values
+=over 4
+
+=item B<Pod::Paragraph>
 
 =back
 
-=item PATHNAME CONSTANTS
+=over 4
 
-Constants
+=item Pod::Paragraph-E<gt>B<new()>
 
-=item POSIX CONSTANTS
+=back
 
-Constants
+=over 4
 
-=item SYSTEM CONFIGURATION
+=item $pod_para-E<gt>B<cmd_name()>
 
-Constants
+=back
 
-=item ERRNO
+=over 4
 
-Constants
+=item $pod_para-E<gt>B<text()>
 
-=item FCNTL
+=back
 
-Constants
+=over 4
 
-=item FLOAT
+=item $pod_para-E<gt>B<raw_text()>
 
-Constants
+=back
 
-=item LIMITS
+=over 4
 
-Constants
+=item $pod_para-E<gt>B<cmd_prefix()>
 
-=item LOCALE
+=back
 
-Constants
+=over 4
 
-=item MATH
+=item $pod_para-E<gt>B<cmd_separator()>
 
-Constants
+=back
 
-=item SIGNAL
+=over 4
 
-Constants
+=item $pod_para-E<gt>B<parse_tree()>
 
-=item STAT
+=back
 
-Constants, Macros
+=over 4
 
-=item STDLIB
+=item $pod_para-E<gt>B<file_line()>
 
-Constants
+=back
 
-=item STDIO
+=over 4
 
-Constants
+=item B<Pod::InteriorSequence>
 
-=item TIME
+=back
 
-Constants
+=over 4
 
-=item UNISTD
+=item Pod::InteriorSequence-E<gt>B<new()>
 
-Constants
+=back
 
-=item WAIT
+=over 4
 
-Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
-WTERMSIG, WIFSTOPPED, WSTOPSIG
+=item $pod_seq-E<gt>B<cmd_name()>
 
 =back
 
-=head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
-name space
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item $pod_seq-E<gt>B<prepend()>
 
-:unix, :stdio, :perlio, :crlf, :mmap, :utf8, :bytes, :raw, :pop, :win32
+=back
 
 =over 4
 
-=item Custom Layers
-
-:encoding, :via
+=item $pod_seq-E<gt>B<append()>
 
-=item Alternatives to raw
+=back
 
-=item Defaults and how to override them
+=over 4
 
-=item Querying the layers of filehandles
+=item $pod_seq-E<gt>B<nested()>
 
 =back
 
-=item AUTHOR
+=over 4
 
-=item SEE ALSO
+=item $pod_seq-E<gt>B<raw_text()>
 
 =back
 
-=head2 PerlIO::encoding - encoding layer
+=over 4
+
+=item $pod_seq-E<gt>B<left_delimiter()>
+
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item $pod_seq-E<gt>B<right_delimiter()>
 
-=item DESCRIPTION
+=back
 
-=item SEE ALSO
+=over 4
+
+=item $pod_seq-E<gt>B<parse_tree()>
 
 =back
 
-=head2 PerlIO::scalar - in-memory IO, scalar IO
+=over 4
+
+=item $pod_seq-E<gt>B<file_line()>
+
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item Pod::InteriorSequence::B<DESTROY()>
 
-=item DESCRIPTION
+=back
 
-=item IMPLEMENTATION NOTE
+=over 4
+
+=item B<Pod::ParseTree>
 
 =back
 
-=head2 PerlIO::via - Helper class for PerlIO layers implemented in perl
+=over 4
+
+=item Pod::ParseTree-E<gt>B<new()>
+
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item $ptree-E<gt>B<top()>
 
-=item DESCRIPTION
+=back
 
-=item EXPECTED METHODS
+=over 4
 
-$class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
-$obj->UTF8($bellowFlag,[$fh]), $obj->OPEN($path,$mode[,$fh]),
-$obj->BINMODE([,$fh]), $obj->FDOPEN($fd[,$fh]),
-$obj->SYSOPEN($path,$imode,$perm,[,$fh]), $obj->FILENO($fh),
-$obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
-$obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
-$obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
-$obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
+=item $ptree-E<gt>B<children()>
 
-=item EXAMPLES
+=back
 
 =over 4
 
-=item Example - a Hexadecimal Handle
+=item $ptree-E<gt>B<prepend()>
 
 =back
 
+=over 4
+
+=item $ptree-E<gt>B<append()>
+
 =back
 
-=head2 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
+=over 4
+
+=item $ptree-E<gt>B<raw_text()>
+
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item Pod::ParseTree::B<DESTROY()>
 
-=item DESCRIPTION
+=back
 
-=item REQUIRED MODULES
+=over 4
 
 =item SEE ALSO
 
-=item ACKNOWLEDGEMENTS
-
-=item COPYRIGHT
+=item AUTHOR
 
 =back
 
-=head2 Pod::Checker, podchecker() - check pod documents for syntax errors
+=head2 Pod::LaTeX - Convert Pod data to formatted Latex
 
 =over 4
 
 =item SYNOPSIS
 
-=item OPTIONS/ARGUMENTS
+=item DESCRIPTION
+
+=back
 
 =over 4
 
-=item podchecker()
+=item OBJECT METHODS
 
-B<-warnings> =E<gt> I<val>
+C<initialize>
 
 =back
 
-=item DESCRIPTION
+=over 4
 
-=item DIAGNOSTICS
+=item Data Accessors
 
-=over 4
+B<AddPreamble>
 
-=item Errors
+=back
 
-empty =headn, =over on line I<N> without closing =back, =item without
-previous =over, =back without previous =over, No argument for =begin, =end
-without =begin, Nested =begin's, =for without formatter specification,
-unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
-interior-sequence "I<SEQ>", nested commands
-I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
-number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
-empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
-after =back
+B<AddPostamble>
 
-=item Warnings
+B<Head1Level>
 
-multiple occurrence of link target I<name>, line containing nothing but
-whitespace in paragraph, file does not start with =head, previous =item has
-no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
-vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
-items in =over, No argument for =item, empty section in previous paragraph,
-Verbatim paragraph in NAME section, =headI<n> without preceding higher
-level
+B<Label>
 
-=item Hyperlinks
+B<LevelNoNum>
 
-ignoring leading/trailing whitespace in link, (section) in '$page'
-deprecated, alternative text/node '%s' contains non-escaped | or /
+B<MakeIndex>
 
-=back
+B<ReplaceNAMEwithSection>
 
-=item RETURN VALUE
+B<StartWithNewPage>
 
-=item EXAMPLES
+B<TableOfContents>
 
-=item INTERFACE
+B<UniqueLabels>
 
-=back
+B<UserPreamble>
 
-C<Pod::Checker-E<gt>new( %options )>
+B<UserPostamble>
 
-C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
-@args )>
+B<Lists>
 
-C<$checker-E<gt>num_errors()>
+=over 4
 
-C<$checker-E<gt>num_warnings()>
+=item Subclassed methods
 
-C<$checker-E<gt>name()>
+=back
 
-C<$checker-E<gt>node()>
+B<begin_pod>
 
-C<$checker-E<gt>idx()>
+B<end_pod>
 
-C<$checker-E<gt>hyperlink()>
+B<command>
+
+B<verbatim>
+
+B<textblock>
+
+B<interior_sequence>
 
 =over 4
 
-=item AUTHOR
+=item List Methods
+
+B<begin_list>
 
 =back
 
-=head2 Pod::Find - find POD documents in directory trees
+B<end_list>
+
+B<add_item>
 
 =over 4
 
-=item SYNOPSIS
+=item Methods for headings
 
-=item DESCRIPTION
+B<head>
 
 =back
 
 =over 4
 
-=item C<pod_find( { %opts } , @directories )>
+=item Internal methods
 
-C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
-1>
+B<_output>
 
 =back
 
-=over 4
-
-=item C<simplify_name( $str )>
+B<_replace_special_chars>
 
-=back
+B<_replace_special_chars_late>
 
-=over 4
+B<_create_label>
 
-=item C<pod_where( { %opts }, $pod )>
+B<_create_index>
 
-C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
-1>
+B<_clean_latex_commands>
 
-=back
+B<_split_delimited>
 
 =over 4
 
-=item C<contains_pod( $file , $verbose )>
+=item NOTES
 
-=back
+=item SEE ALSO
 
-=over 4
+=item AUTHORS
 
-=item AUTHOR
+=item COPYRIGHT
 
-=item SEE ALSO
+=item REVISION
 
 =back
 
-=head2 Pod::Html - module to convert pod files to HTML
+=head2 Pod::Man - Convert POD data to formatted *roff input
 
 =over 4
 
@@ -18532,407 +22748,386 @@ C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
 
 =item DESCRIPTION
 
-=item ARGUMENTS
+center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
+release, section
 
-backlink, cachedir, css, flush, header, help, hiddendirs, htmldir,
-htmlroot, index, infile, libpods, netscape, outfile, podpath, podroot,
-quiet, recurse, title, verbose
+=item DIAGNOSTICS
 
-=item EXAMPLE
+roff font should be 1 or 2 chars, not "%s", Invalid quote specification
+"%s"
 
-=item ENVIRONMENT
+=item BUGS
+
+=item CAVEATS
 
 =item AUTHOR
 
-=item SEE ALSO
+=item COPYRIGHT AND LICENSE
 
-=item COPYRIGHT
+=item SEE ALSO
 
 =back
 
-=head2 Pod::InputObjects - objects representing POD input paragraphs,
-commands, etc.
+=head2 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
 
 =over 4
 
 =item SYNOPSIS
 
-=item REQUIRES
-
-=item EXPORTS
-
 =item DESCRIPTION
 
-package B<Pod::InputSource>, package B<Pod::Paragraph>, package
-B<Pod::InteriorSequence>, package B<Pod::ParseTree>
-
-=back
+=item SEE ALSO
 
-=over 4
+=item AUTHOR
 
-=item B<Pod::InputSource>
+=item COPYRIGHT AND LICENSE
 
 =back
 
+=head2 Pod::ParseUtils - helpers for POD parsing and conversion
+
 =over 4
 
-=item B<new()>
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =back
 
 =over 4
 
-=item B<name()>
+=item Pod::List
 
-=back
+Pod::List-E<gt>new()
 
-=over 4
+=back
 
-=item B<handle()>
+$list-E<gt>file()
 
-=back
+$list-E<gt>start()
 
-=over 4
+$list-E<gt>indent()
 
-=item B<was_cutting()>
+$list-E<gt>type()
 
-=back
+$list-E<gt>rx()
 
-=over 4
+$list-E<gt>item()
 
-=item B<Pod::Paragraph>
+$list-E<gt>parent()
 
-=back
+$list-E<gt>tag()
 
 =over 4
 
-=item Pod::Paragraph-E<gt>B<new()>
+=item Pod::Hyperlink
+
+Pod::Hyperlink-E<gt>new()
 
 =back
 
-=over 4
+$link-E<gt>parse($string)
 
-=item $pod_para-E<gt>B<cmd_name()>
+$link-E<gt>markup($string)
 
-=back
+$link-E<gt>text()
 
-=over 4
+$link-E<gt>warning()
 
-=item $pod_para-E<gt>B<text()>
+$link-E<gt>file(), $link-E<gt>line()
 
-=back
+$link-E<gt>page()
 
-=over 4
+$link-E<gt>node()
 
-=item $pod_para-E<gt>B<raw_text()>
+$link-E<gt>alttext()
 
-=back
+$link-E<gt>type()
+
+$link-E<gt>link()
 
 =over 4
 
-=item $pod_para-E<gt>B<cmd_prefix()>
+=item Pod::Cache
 
-=back
+Pod::Cache-E<gt>new()
 
-=over 4
+=back
 
-=item $pod_para-E<gt>B<cmd_separator()>
+$cache-E<gt>item()
 
-=back
+$cache-E<gt>find_page($name)
 
 =over 4
 
-=item $pod_para-E<gt>B<parse_tree()>
+=item Pod::Cache::Item
+
+Pod::Cache::Item-E<gt>new()
 
 =back
 
-=over 4
+$cacheitem-E<gt>page()
 
-=item $pod_para-E<gt>B<file_line()>
+$cacheitem-E<gt>description()
 
-=back
+$cacheitem-E<gt>path()
 
-=over 4
+$cacheitem-E<gt>file()
 
-=item B<Pod::InteriorSequence>
+$cacheitem-E<gt>nodes()
 
-=back
+$cacheitem-E<gt>find_node($name)
+
+$cacheitem-E<gt>idx()
 
 =over 4
 
-=item Pod::InteriorSequence-E<gt>B<new()>
+=item AUTHOR
+
+=item SEE ALSO
 
 =back
 
+=head2 Pod::Parser - base class for creating POD filters and translators
+
 =over 4
 
-=item $pod_seq-E<gt>B<cmd_name()>
+=item SYNOPSIS
 
-=back
+=item REQUIRES
 
-=over 4
+=item EXPORTS
 
-=item $pod_seq-E<gt>B<prepend()>
+=item DESCRIPTION
 
-=back
+=item QUICK OVERVIEW
 
-=over 4
+=item PARSING OPTIONS
 
-=item $pod_seq-E<gt>B<append()>
+B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
+B<-warnings> (default: unset)
 
 =back
 
 =over 4
 
-=item $pod_seq-E<gt>B<nested()>
+=item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
 
 =back
 
 =over 4
 
-=item $pod_seq-E<gt>B<raw_text()>
+=item B<command()>
+
+C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
 
 =back
 
 =over 4
 
-=item $pod_seq-E<gt>B<left_delimiter()>
+=item B<verbatim()>
+
+C<$text>, C<$line_num>, C<$pod_para>
 
 =back
 
 =over 4
 
-=item $pod_seq-E<gt>B<right_delimiter()>
+=item B<textblock()>
+
+C<$text>, C<$line_num>, C<$pod_para>
 
 =back
 
 =over 4
 
-=item $pod_seq-E<gt>B<parse_tree()>
+=item B<interior_sequence()>
 
 =back
 
 =over 4
 
-=item $pod_seq-E<gt>B<file_line()>
+=item OPTIONAL SUBROUTINE/METHOD OVERRIDES
 
 =back
 
 =over 4
 
-=item Pod::InteriorSequence::B<DESTROY()>
+=item B<new()>
 
 =back
 
 =over 4
 
-=item B<Pod::ParseTree>
+=item B<initialize()>
 
 =back
 
 =over 4
 
-=item Pod::ParseTree-E<gt>B<new()>
+=item B<begin_pod()>
 
 =back
 
 =over 4
 
-=item $ptree-E<gt>B<top()>
+=item B<begin_input()>
 
 =back
 
 =over 4
 
-=item $ptree-E<gt>B<children()>
+=item B<end_input()>
 
 =back
 
 =over 4
 
-=item $ptree-E<gt>B<prepend()>
+=item B<end_pod()>
 
 =back
 
 =over 4
 
-=item $ptree-E<gt>B<append()>
+=item B<preprocess_line()>
 
 =back
 
 =over 4
 
-=item $ptree-E<gt>B<raw_text()>
+=item B<preprocess_paragraph()>
 
 =back
 
 =over 4
 
-=item Pod::ParseTree::B<DESTROY()>
+=item METHODS FOR PARSING AND PROCESSING
 
 =back
 
 =over 4
 
-=item SEE ALSO
+=item B<parse_text()>
 
-=item AUTHOR
+B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
+I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
+I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::LaTeX - Convert Pod data to formatted Latex
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item B<interpolate()>
 
 =back
 
 =over 4
 
-=item OBJECT METHODS
-
-C<initialize>
+=item B<parse_paragraph()>
 
 =back
 
 =over 4
 
-=item Data Accessors
-
-B<AddPreamble>
+=item B<parse_from_filehandle()>
 
 =back
 
-B<AddPostamble>
-
-B<Head1Level>
-
-B<Label>
-
-B<LevelNoNum>
-
-B<MakeIndex>
-
-B<ReplaceNAMEwithSection>
-
-B<StartWithNewPage>
-
-B<TableOfContents>
-
-B<UniqueLabels>
-
-B<UserPreamble>
+=over 4
 
-B<UserPostamble>
+=item B<parse_from_file()>
 
-B<Lists>
+=back
 
 =over 4
 
-=item Subclassed methods
+=item ACCESSOR METHODS
 
 =back
 
-B<begin_pod>
+=over 4
 
-B<end_pod>
+=item B<errorsub()>
 
-B<command>
+=back
 
-B<verbatim>
+=over 4
 
-B<textblock>
+=item B<cutting()>
 
-B<interior_sequence>
+=back
 
 =over 4
 
-=item List Methods
-
-B<begin_list>
+=item B<parseopts()>
 
 =back
 
-B<end_list>
+=over 4
 
-B<add_item>
+=item B<output_file()>
 
-=over 4
+=back
 
-=item Methods for headings
+=over 4
 
-B<head>
+=item B<output_handle()>
 
 =back
 
 =over 4
 
-=item Internal methods
-
-B<_output>
+=item B<input_file()>
 
 =back
 
-B<_replace_special_chars>
+=over 4
 
-B<_replace_special_chars_late>
+=item B<input_handle()>
 
-B<_create_label>
+=back
 
-B<_create_index>
+=over 4
 
-B<_clean_latex_commands>
+=item B<input_streams()>
 
-B<_split_delimited>
+=back
 
 =over 4
 
-=item NOTES
-
-=item SEE ALSO
+=item B<top_stream()>
 
-=item AUTHORS
+=back
 
-=item COPYRIGHT
+=over 4
 
-=item REVISION
+=item PRIVATE METHODS AND DATA
 
 =back
 
-=head2 Pod::Man - Convert POD data to formatted *roff input
-
 =over 4
 
-=item SYNOPSIS
+=item B<_push_input_stream()>
 
-=item DESCRIPTION
+=back
 
-center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
-release, section
+=over 4
 
-=item DIAGNOSTICS
+=item B<_pop_input_stream()>
 
-roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
-specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
-escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
 =back
 
-=item BUGS
+=over 4
 
-=item CAVEATS
+=item TREE-BASED PARSING
 
 =item SEE ALSO
 
 =item AUTHOR
 
-=item COPYRIGHT AND LICENSE
-
 =back
 
-=head2 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
+=head2 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
 
 =over 4
 
@@ -18942,13 +23137,13 @@ escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
 
 =item SEE ALSO
 
-=item AUTHOR
+=item COPYRIGHT AND DISCLAIMERS
 
-=item COPYRIGHT AND LICENSE
+=item AUTHOR
 
 =back
 
-=head2 Pod::ParseUtils - helpers for POD parsing and conversion
+=head2 Pod::Perldoc::ToMan - let Perldoc render Pod as man pages
 
 =over 4
 
@@ -18956,342 +23151,355 @@ escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
 
 =item DESCRIPTION
 
-=back
+=item CAVEAT
 
-=over 4
+=item SEE ALSO
 
-=item Pod::List
+=item COPYRIGHT AND DISCLAIMERS
 
-Pod::List-E<gt>new()
+=item AUTHOR
 
 =back
 
-$list-E<gt>file()
-
-$list-E<gt>start()
-
-$list-E<gt>indent()
-
-$list-E<gt>type()
+=head2 Pod::Perldoc::ToNroff - let Perldoc convert Pod to nroff
 
-$list-E<gt>rx()
+=over 4
 
-$list-E<gt>item()
+=item SYNOPSIS
 
-$list-E<gt>parent()
+=item DESCRIPTION
 
-$list-E<gt>tag()
+=item CAVEAT
 
-=over 4
+=item SEE ALSO
 
-=item Pod::Hyperlink
+=item COPYRIGHT AND DISCLAIMERS
 
-Pod::Hyperlink-E<gt>new()
+=item AUTHOR
 
 =back
 
-$link-E<gt>parse($string)
-
-$link-E<gt>markup($string)
+=head2 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
 
-$link-E<gt>text()
+=over 4
 
-$link-E<gt>warning()
+=item SYNOPSIS
 
-$link-E<gt>file(), $link-E<gt>line()
+=item DESCRIPTION
 
-$link-E<gt>page()
+=item SEE ALSO
 
-$link-E<gt>node()
+=item COPYRIGHT AND DISCLAIMERS
 
-$link-E<gt>alttext()
+=item AUTHOR
 
-$link-E<gt>type()
+=back
 
-$link-E<gt>link()
+=head2 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
 
 =over 4
 
-=item Pod::Cache
-
-Pod::Cache-E<gt>new()
-
-=back
-
-$cache-E<gt>item()
+=item SYNOPSIS
 
-$cache-E<gt>find_page($name)
+=item DESCRIPTION
 
-=over 4
+=item SEE ALSO
 
-=item Pod::Cache::Item
+=item COPYRIGHT AND DISCLAIMERS
 
-Pod::Cache::Item-E<gt>new()
+=item AUTHOR
 
 =back
 
-$cacheitem-E<gt>page()
-
-$cacheitem-E<gt>description()
+=head2 Pod::Perldoc::ToText - let Perldoc render Pod as plaintext
 
-$cacheitem-E<gt>path()
+=over 4
 
-$cacheitem-E<gt>file()
+=item SYNOPSIS
 
-$cacheitem-E<gt>nodes()
+=item DESCRIPTION
 
-$cacheitem-E<gt>find_node($name)
+=item CAVEAT
 
-$cacheitem-E<gt>idx()
+=item SEE ALSO
 
-=over 4
+=item COPYRIGHT AND DISCLAIMERS
 
 =item AUTHOR
 
-=item SEE ALSO
-
 =back
 
-=head2 Pod::Parser - base class for creating POD filters and translators
+=head2 Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod
 
 =over 4
 
 =item SYNOPSIS
 
-=item REQUIRES
-
-=item EXPORTS
-
 =item DESCRIPTION
 
-=item QUICK OVERVIEW
-
-=item PARSING OPTIONS
+=item SEE ALSO
 
-B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
-B<-warnings> (default: unset)
+=item AUTHOR
 
 =back
 
+=head2 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
+
 =over 4
 
-=item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item SEE ALSO
 
-=item B<command()>
+=item COPYRIGHT AND DISCLAIMERS
 
-C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
+=item AUTHOR
 
 =back
 
+=head2 Pod::PlainText - Convert POD data to formatted ASCII text
+
 =over 4
 
-=item B<verbatim()>
+=item SYNOPSIS
 
-C<$text>, C<$line_num>, C<$pod_para>
+=item DESCRIPTION
 
-=back
+alt, indent, loose, sentence, width
 
-=over 4
+=item DIAGNOSTICS
 
-=item B<textblock()>
+Bizarre space in item, Can't open %s for reading: %s, Unknown escape: %s,
+Unknown sequence: %s, Unmatched =back
 
-C<$text>, C<$line_num>, C<$pod_para>
+=item RESTRICTIONS
 
-=back
+=item NOTES
 
-=over 4
+=item SEE ALSO
 
-=item B<interior_sequence()>
+=item AUTHOR
 
 =back
 
+=head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
+
 =over 4
 
-=item OPTIONAL SUBROUTINE/METHOD OVERRIDES
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
 =over 4
 
-=item B<new()>
+=item EXPORT
 
 =back
 
-=over 4
+=item AUTHOR
 
-=item B<initialize()>
+=item SEE ALSO
 
 =back
 
+=head2 Pod::Select, podselect() - extract selected sections of POD from
+input
+
 =over 4
 
-=item B<begin_pod()>
+=item SYNOPSIS
 
-=back
+=item REQUIRES
 
-=over 4
+=item EXPORTS
 
-=item B<begin_input()>
+=item DESCRIPTION
+
+=item SECTION SPECIFICATIONS
+
+=item RANGE SPECIFICATIONS
 
 =back
 
 =over 4
 
-=item B<end_input()>
+=item OBJECT METHODS
 
 =back
 
 =over 4
 
-=item B<end_pod()>
+=item B<curr_headings()>
 
 =back
 
 =over 4
 
-=item B<preprocess_line()>
+=item B<select()>
 
 =back
 
 =over 4
 
-=item B<preprocess_paragraph()>
+=item B<add_selection()>
 
 =back
 
 =over 4
 
-=item METHODS FOR PARSING AND PROCESSING
+=item B<clear_selections()>
 
 =back
 
 =over 4
 
-=item B<parse_text()>
-
-B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
-I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
-I<code-ref>|I<method-name>
+=item B<match_section()>
 
 =back
 
 =over 4
 
-=item B<interpolate()>
+=item B<is_selected()>
 
 =back
 
 =over 4
 
-=item B<parse_paragraph()>
+=item EXPORTED FUNCTIONS
 
 =back
 
 =over 4
 
-=item B<parse_from_filehandle()>
+=item B<podselect()>
+
+B<-output>, B<-sections>, B<-ranges>
 
 =back
 
 =over 4
 
-=item B<parse_from_file()>
+=item PRIVATE METHODS AND DATA
 
 =back
 
 =over 4
 
-=item ACCESSOR METHODS
+=item B<_compile_section_spec()>
 
 =back
 
 =over 4
 
-=item B<errorsub()>
+=item $self->{_SECTION_HEADINGS}
 
 =back
 
 =over 4
 
-=item B<cutting()>
+=item $self->{_SELECTED_SECTIONS}
 
 =back
 
 =over 4
 
-=item B<parseopts()>
+=item SEE ALSO
+
+=item AUTHOR
 
 =back
 
+=head2 Pod::Simple - framework for parsing Pod
+
 =over 4
 
-=item B<output_file()>
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item MAIN METHODS
 
-=item B<output_handle()>
+C<< $parser = I<SomeClass>->new(); >>, C<< $parser->output_fh( *OUT ); >>,
+C<< $parser->output_string( \$somestring ); >>, C<< $parser->parse_file(
+I<$some_filename> ); >>, C<< $parser->parse_file( *INPUT_FH ); >>, C<<
+$parser->parse_string_document( I<$all_content> ); >>, C<<
+$parser->parse_lines( I<...@lines...>, undef ); >>, C<<
+$parser->content_seen >>, C<< I<SomeClass>->filter( I<$filename> ); >>, C<<
+I<SomeClass>->filter( I<*INPUT_FH> ); >>, C<< I<SomeClass>->filter(
+I<\$document_content> ); >>
 
-=back
+=item SECONDARY METHODS
 
-=over 4
+C<< $parser->no_whining( I<SOMEVALUE> ) >>, C<< $parser->no_errata_section(
+I<SOMEVALUE> ) >>, C<< $parser->complain_stderr( I<SOMEVALUE> ) >>, C<<
+$parser->source_filename >>, C<< $parser->doc_has_started >>, C<<
+$parser->source_dead >>
 
-=item B<input_file()>
+=item CAVEATS
 
-=back
+=item SEE ALSO
 
-=over 4
+=item COPYRIGHT AND DISCLAIMERS
 
-=item B<input_handle()>
+=item AUTHOR
 
 =back
 
+=head2 Pod::Simple::Checker -- check the Pod syntax of a document
+
 =over 4
 
-=item B<input_streams()>
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item SEE ALSO
 
-=item B<top_stream()>
+=item COPYRIGHT AND DISCLAIMERS
+
+=item AUTHOR
 
 =back
 
+=head2 Pod::Simple::Debug -- put Pod::Simple into trace/debug mode
+
 =over 4
 
-=item PRIVATE METHODS AND DATA
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item CAVEATS
 
-=item B<_push_input_stream()>
+=item GUTS
 
-=back
+=item SEE ALSO
 
-=over 4
+=item COPYRIGHT AND DISCLAIMERS
 
-=item B<_pop_input_stream()>
+=item AUTHOR
 
 =back
 
+=head2 Pod::Simple::DumpAsText -- dump Pod-parsing events as text
+
 =over 4
 
-=item TREE-BASED PARSING
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =item SEE ALSO
 
+=item COPYRIGHT AND DISCLAIMERS
+
 =item AUTHOR
 
 =back
 
-=head2 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
+=head2 Pod::Simple::DumpAsXML -- turn Pod into XML
 
 =over 4
 
@@ -19307,7 +23515,7 @@ I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::Perldoc::ToMan - let Perldoc render Pod as man pages
+=head2 Pod::Simple::HTML - convert Pod to HTML
 
 =over 4
 
@@ -19315,7 +23523,13 @@ I<code-ref>|I<method-name>
 
 =item DESCRIPTION
 
-=item CAVEAT
+=item CALLING FROM THE COMMAND LINE
+
+=item CALLING FROM PERL
+
+=item METHODS
+
+=item SUBCLASSING
 
 =item SEE ALSO
 
@@ -19325,7 +23539,8 @@ I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::Perldoc::ToNroff - let Perldoc convert Pod to nroff
+=head2 Pod::Simple::HTMLBatch - convert several Pod files to several HTML
+files
 
 =over 4
 
@@ -19333,7 +23548,40 @@ I<code-ref>|I<method-name>
 
 =item DESCRIPTION
 
-=item CAVEAT
+=over 4
+
+=item FROM THE COMMAND LINE
+
+=back
+
+=item MAIN METHODS
+
+$batchconv = Pod::Simple::HTMLBatch->new;, $batchconv->batch_convert(
+I<indirs>, I<outdir> );, $batchconv->batch_convert( undef    , ...);,
+$batchconv->batch_convert( q{@INC}, ...);, $batchconv->batch_convert(
+\@dirs , ...);, $batchconv->batch_convert( "somedir" , ...);,
+$batchconv->batch_convert( 'somedir:someother:also' , ...);,
+$batchconv->batch_convert( ... , undef );, $batchconv->batch_convert( ... ,
+'somedir' );
+
+=over 4
+
+=item ACCESSOR METHODS
+
+$batchconv->verbose( I<nonnegative_integer> );, $batchconv->index(
+I<true-or-false> );, $batchconv->contents_file( I<filename> );,
+$batchconv->contents_page_start( I<HTML_string> );,
+$batchconv->contents_page_end( I<HTML_string> );, $batchconv->add_css( $url
+);, $batchconv->add_javascript( $url );, $batchconv->css_flurry(
+I<true-or-false> );, $batchconv->javascript_flurry( I<true-or-false> );,
+$batchconv->no_contents_links( I<true-or-false> );,
+$batchconv->html_render_class( I<classname> );
+
+=back
+
+=item NOTES ON CUSTOMIZATION
+
+=item ASK ME!
 
 =item SEE ALSO
 
@@ -19343,7 +23591,8 @@ I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
+=head2 Pod::Simple::LinkSection -- represent "section" attributes of L
+codes
 
 =over 4
 
@@ -19359,7 +23608,7 @@ I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
+=head2 Pod::Simple::Methody -- turn Pod::Simple events into method calls
 
 =over 4
 
@@ -19367,6 +23616,8 @@ I<code-ref>|I<method-name>
 
 =item DESCRIPTION
 
+=item METHOD CALLING
+
 =item SEE ALSO
 
 =item COPYRIGHT AND DISCLAIMERS
@@ -19375,7 +23626,7 @@ I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::Perldoc::ToText - let Perldoc render Pod as plaintext
+=head2 Pod::Simple::PullParser -- a pull-parser interface to parsing Pod
 
 =over 4
 
@@ -19383,7 +23634,20 @@ I<code-ref>|I<method-name>
 
 =item DESCRIPTION
 
-=item CAVEAT
+=item METHODS
+
+my $token = $parser->get_token, $parser->unget_token( $token ),
+$parser->unget_token( $token1, $token2, ... ), $parser->set_source(
+$filename ), $parser->set_source( $filehandle_object ),
+$parser->set_source( \$document_source ), $parser->set_source(
+\@document_lines ), $parser->parse_file(...),
+$parser->parse_string_document(...), $parser->filter(...),
+$parser->parse_from_file(...), my $title_string = $parser->get_title, my
+$title_string = $parser->get_short_title, $author_name  =
+$parser->get_author, $description_name = $parser->get_description,
+$version_block = $parser->get_version
+
+=item NOTE
 
 =item SEE ALSO
 
@@ -19393,7 +23657,8 @@ I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod
+=head2 Pod::Simple::PullParserEndToken -- end-tokens from
+Pod::Simple::PullParser
 
 =over 4
 
@@ -19401,13 +23666,19 @@ I<code-ref>|I<method-name>
 
 =item DESCRIPTION
 
+$token->tagname, $token->tagname(I<somestring>), $token->tag(...),
+$token->is_tag(I<somestring>) or $token->is_tagname(I<somestring>)
+
 =item SEE ALSO
 
+=item COPYRIGHT AND DISCLAIMERS
+
 =item AUTHOR
 
 =back
 
-=head2 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
+=head2 Pod::Simple::PullParserStartToken -- start-tokens from
+Pod::Simple::PullParser
 
 =over 4
 
@@ -19415,6 +23686,11 @@ I<code-ref>|I<method-name>
 
 =item DESCRIPTION
 
+$token->tagname, $token->tagname(I<somestring>), $token->tag(...),
+$token->is_tag(I<somestring>) or $token->is_tagname(I<somestring>),
+$token->attr(I<attrname>), $token->attr(I<attrname>, I<newvalue>),
+$token->attr_hash
+
 =item SEE ALSO
 
 =item COPYRIGHT AND DISCLAIMERS
@@ -19423,7 +23699,8 @@ I<code-ref>|I<method-name>
 
 =back
 
-=head2 Pod::PlainText - Convert POD data to formatted ASCII text
+=head2 Pod::Simple::PullParserTextToken -- text-tokens from
+Pod::Simple::PullParser
 
 =over 4
 
@@ -19431,24 +23708,36 @@ I<code-ref>|I<method-name>
 
 =item DESCRIPTION
 
-alt, indent, loose, sentence, width
+$token->text, $token->text(I<somestring>), $token->text_r()
 
-=item DIAGNOSTICS
+=item SEE ALSO
 
-Bizarre space in item, Can't open %s for reading: %s, Unknown escape: %s,
-Unknown sequence: %s, Unmatched =back
+=item COPYRIGHT AND DISCLAIMERS
 
-=item RESTRICTIONS
+=item AUTHOR
 
-=item NOTES
+=back
+
+=head2 Pod::Simple::PullParserToken -- tokens from Pod::Simple::PullParser
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+$token->type, $token->is_start, $token->is_text, $token->is_end,
+$token->dump
 
 =item SEE ALSO
 
+=item COPYRIGHT AND DISCLAIMERS
+
 =item AUTHOR
 
 =back
 
-=head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
+=head2 Pod::Simple::RTF -- format Pod as RTF
 
 =over 4
 
@@ -19456,121 +23745,192 @@ Unknown sequence: %s, Unmatched =back
 
 =item DESCRIPTION
 
-=over 4
+=item FORMAT CONTROL ATTRIBUTES
 
-=item EXPORT
+$parser->head1_halfpoint_size( I<halfpoint_integer> );,
+$parser->head2_halfpoint_size( I<halfpoint_integer> );,
+$parser->head3_halfpoint_size( I<halfpoint_integer> );,
+$parser->head4_halfpoint_size( I<halfpoint_integer> );,
+$parser->codeblock_halfpoint_size( I<halfpoint_integer> );,
+$parser->header_halfpoint_size( I<halfpoint_integer> );,
+$parser->normal_halfpoint_size( I<halfpoint_integer> );,
+$parser->no_proofing_exemptions( I<true_or_false> );, $parser->doc_lang(
+I<microsoft_decimal_language_code> )
 
-=back
+=item SEE ALSO
 
-=item AUTHOR
+=item COPYRIGHT AND DISCLAIMERS
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 Pod::Select, podselect() - extract selected sections of POD from
-input
+=head2 Pod::Simple::Search - find POD documents in directory trees
 
 =over 4
 
 =item SYNOPSIS
 
-=item REQUIRES
-
-=item EXPORTS
-
 =item DESCRIPTION
 
-=item SECTION SPECIFICATIONS
+=item CONSTRUCTOR
 
-=item RANGE SPECIFICATIONS
+=item ACCESSORS
 
-=back
+$search->inc( I<true-or-false> );, $search->verbose( I<nonnegative-number>
+);, $search->limit_glob( I<some-glob-string> );, $search->callback(
+I<\&some_routine> );, $search->laborious( I<true-or-false> );,
+$search->shadows( I<true-or-false> );, $search->limit_re( I<some-regxp> );,
+$search->dir_prefix( I<some-string-value> );, $search->progress(
+I<some-progress-object> );, $name2path = $self->name2path;, $path2name =
+$self->path2name;
+
+=item MAIN SEARCH METHODS
 
 =over 4
 
-=item OBJECT METHODS
+=item C<< $search->survey( @directories ) >>
 
-=back
+C<name2path>, C<path2name>
 
-=over 4
+=item C<< $search->simplify_name( $str ) >>
 
-=item B<curr_headings()>
+=item C<< $search->find( $pod ) >>
+
+=item C<< $search->find( $pod, @search_dirs ) >>
+
+=item C<< $self->contains_pod( $file ) >>
 
 =back
 
-=over 4
+=item AUTHOR
 
-=item B<select()>
+=item SEE ALSO
 
 =back
 
+=head2 Pod::Simple::Subclassing -- write a formatter as a Pod::Simple
+subclass
+
 =over 4
 
-=item B<add_selection()>
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item Events
 
-=item B<clear_selections()>
+C<< $parser->_handle_element_start( I<element_name>, I<attr_hashref> ) >>,
+C<< $parser->_handle_element_end( I<element_name>  ) >>, C<<
+$parser->_handle_text( I<text_string>  ) >>, events with an element_name
+of Document, events with an element_name of Para, events with an
+element_name of B, C, F, or I, events with an element_name of S, events
+with an element_name of X, events with an element_name of L, events with an
+element_name of E or Z, events with an element_name of Verbatim, events
+with an element_name of head1 .. head4, events with an element_name of
+over-bullet, events with an element_name of over-number, events with an
+element_name of over-text, events with an element_name of over-block,
+events with an element_name of item-bullet, events with an element_name of
+item-number, events with an element_name of item-text, events with an
+element_name of for, events with an element_name of Data
 
-=back
+=item More Pod::Simple Methods
 
-=over 4
+C<< $parser->accept_targets( I<SOMEVALUE> ) >>, C<<
+$parser->accept_targets_as_text(  I<SOMEVALUE> ) >>, C<<
+$parser->accept_codes( I<Codename>, I<Codename>...  ) >>, C<<
+$parser->accept_directive_as_data( I<directive_name> ) >>, C<<
+$parser->accept_directive_as_verbatim( I<directive_name> ) >>, C<<
+$parser->accept_directive_as_processed( I<directive_name> ) >>, C<<
+$parser->nbsp_for_S( I<BOOLEAN> ); >>, C<< $parser->version_report() >>,
+C<< $parser->pod_para_count() >>, C<< $parser->line_count() >>, C<<
+$parser->nix_X_codes(  I<SOMEVALUE>  ) >>, C<< $parser->merge_text( 
+I<SOMEVALUE>  ) >>, C<< $parser->code_handler( I<CODE_REF>  ) >>, C<<
+$parser->cut_handler(  I<CODE_REF>  ) >>, C<< $parser->whine(
+I<linenumber>, I<complaint string> ) >>, C<< $parser->scream(
+I<linenumber>, I<complaint string> ) >>, C<< $parser->source_dead(1) >>,
+C<< $parser->hide_line_numbers( I<SOMEVALUE> ) >>, C<< $parser->no_whining(
+I<SOMEVALUE> ) >>, C<< $parser->no_errata_section( I<SOMEVALUE> ) >>, C<<
+$parser->complain_stderr( I<SOMEVALUE> ) >>, C<< $parser->bare_output(
+I<SOMEVALUE> ) >>, C<< $parser->preserve_whitespace( I<SOMEVALUE> ) >>
 
-=item B<match_section()>
+=item SEE ALSO
+
+=item COPYRIGHT AND DISCLAIMERS
+
+=item AUTHOR
 
 =back
 
+=head2 Pod::Simple::Text -- format Pod as plaintext
+
 =over 4
 
-=item B<is_selected()>
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item SEE ALSO
 
-=item EXPORTED FUNCTIONS
+=item COPYRIGHT AND DISCLAIMERS
+
+=item AUTHOR
 
 =back
 
+=head2 Pod::Simple::TextContent -- get the text content of Pod
+
 =over 4
 
-=item B<podselect()>
+=item SYNOPSIS
 
-B<-output>, B<-sections>, B<-ranges>
+=item DESCRIPTION
 
-=back
+=item SEE ALSO
 
-=over 4
+=item COPYRIGHT AND DISCLAIMERS
 
-=item PRIVATE METHODS AND DATA
+=item AUTHOR
 
 =back
 
+=head2 Pod::Simple::XMLOutStream -- turn Pod into XML
+
 =over 4
 
-=item B<_compile_section_spec()>
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item SEE ALSO
 
-=item $self->{_SECTION_HEADINGS}
+=item ABOUT EXTENDING POD
 
-=back
+=item ASK ME!
 
-=over 4
+=item COPYRIGHT AND DISCLAIMERS
 
-=item $self->{_SELECTED_SECTIONS}
+=item AUTHOR
 
 =back
 
+=head2 Pod::SimpleTree, Pod::Simple::SimpleTree -- parse Pod into a simple
+parse tree 
+
 =over 4
 
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+=item Tree Contents
+
 =item SEE ALSO
 
+=item COPYRIGHT AND DISCLAIMERS
+
 =item AUTHOR
 
 =back
@@ -19588,11 +23948,7 @@ alt, code, indent, loose, margin, quotes, sentence, width
 =item DIAGNOSTICS
 
 Bizarre space in item, Item called without tag, Can't open %s for reading:
-%s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
-%s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
-Unmatched =back
-
-=item RESTRICTIONS
+%s, Invalid quote specification "%s"
 
 =item NOTES
 
@@ -19669,8 +24025,8 @@ documentation
 
 =item ARGUMENTS
 
-C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
-C<-pathlist>
+C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-sections>, C<-output>,
+C<-input>, C<-pathlist>, C<-noperldoc>
 
 =item DESCRIPTION
 
@@ -19885,7 +24241,7 @@ utf8 data, restricted hashes, files from future versions of Storable
 =item Hooks
 
 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
-I<serialized>, ..
+I<serialized>, .., C<STORABLE_attach> I<class>, I<cloning>, I<serialized>
 
 =item Predicates
 
@@ -19900,6 +24256,11 @@ C<Storable::is_retrieving>
 
 =item Storable magic
 
+$info = Storable::file_magic( $filename ), C<version>, C<version_nv>,
+C<major>, C<minor>, C<hdrsize>, C<netorder>, C<byteorder>, C<intsize>,
+C<longsize>, C<ptrsize>, C<nvsize>, C<file>, $info = Storable::read_magic(
+$buffer ), $info = Storable::read_magic( $buffer, $must_be_file )
+
 =item EXAMPLES
 
 =item WARNING
@@ -19964,62 +24325,137 @@ C<Storable::is_retrieving>
 
 =item DESCRIPTION
 
-=item BUGS
+=item BUGS
+
+=back
+
+=head2 Sys::Hostname - Try every conceivable way to get hostname
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item AUTHOR
+
+=back
+
+=head2 Syslog, Sys::Syslog - Perl interface to the UNIX syslog(3) calls
+
+=over 4
+
+=item VERSION
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item EXPORTS
+
+=item FUNCTIONS
+
+B<openlog($ident, $logopt, $facility)>, B<syslog($priority, $message)>,
+B<syslog($priority, $format, @args)>, B<Note>,
+B<setlogmask($mask_priority)>, B<setlogsock($sock_type)>,
+B<setlogsock($sock_type, $stream_location)> (added in 5.004_02),
+B<closelog()>
+
+=item EXAMPLES
+
+=item CONSTANTS
+
+=over 4
+
+=item Facilities
+
+=item Levels
 
 =back
 
-=head2 Sys::Hostname - Try every conceivable way to get hostname
-
-=over 4
+=item DIAGNOSTICS
 
-=item SYNOPSIS
+Invalid argument passed to setlogsock, no connection to syslog available,
+stream passed to setlogsock, but %s is not writable, stream passed to
+setlogsock, but could not find any device, tcp passed to setlogsock, but
+tcp service unavailable, syslog: expecting argument %s, syslog: invalid
+level/facility: %s, syslog: too many levels given: %s, syslog: too many
+facilities given: %s, syslog: level must be given, udp passed to
+setlogsock, but udp service unavailable, unix passed to setlogsock, but
+path not available
 
-=item DESCRIPTION
+=item SEE ALSO
 
 =item AUTHOR
 
+=item BUGS
+
+=item SUPPORT
+
+AnnoCPAN: Annotated CPAN documentation, CPAN Ratings, RT: CPAN's request
+tracker, Search CPAN
+
+=item LICENSE
+
 =back
 
-=head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
-interface to the UNIX syslog(3) calls
+=head2 Syslog::Syslog, Sys::Syslog - Perl interface to the UNIX syslog(3)
+calls
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
-setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
-in 5.004_02), closelog
-
-=item EXAMPLES
+=item EXPORTS
 
-=item SEE ALSO
+=item FUNCTIONS
 
-=item AUTHOR
+B<openlog($ident, $logopt, $facility)>, B<syslog($priority, $message)>,
+B<syslog($priority, $format, @args)>, B<Note>,
+B<setlogmask($mask_priority)>, B<setlogsock($sock_type)>,
+B<setlogsock($sock_type, $stream_location)> (added in 5.004_02),
+B<closelog()>
 
-=back
+=item EXAMPLES
 
-=head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
-Perl interface to the UNIX syslog(3) calls
+=item CONSTANTS
 
 =over 4
 
-=item SYNOPSIS
+=item Facilities
 
-=item DESCRIPTION
+=item Levels
+
+=back
 
-openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
-setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
-in 5.004_02), closelog
+=item DIAGNOSTICS
 
-=item EXAMPLES
+Invalid argument passed to setlogsock, no connection to syslog available,
+stream passed to setlogsock, but %s is not writable, stream passed to
+setlogsock, but could not find any device, tcp passed to setlogsock, but
+tcp service unavailable, syslog: expecting argument %s, syslog: invalid
+level/facility: %s, syslog: too many levels given: %s, syslog: too many
+facilities given: %s, syslog: level must be given, udp passed to
+setlogsock, but udp service unavailable, unix passed to setlogsock, but
+path not available
 
 =item SEE ALSO
 
 =item AUTHOR
 
+=item BUGS
+
+=item SUPPORT
+
+AnnoCPAN: Annotated CPAN documentation, CPAN Ratings, RT: CPAN's request
+tracker, Search CPAN
+
+=item LICENSE
+
 =back
 
 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
@@ -20199,6 +24635,8 @@ B<new>
 
 =back
 
+B<create>
+
 B<reset>
 
 =over 4
@@ -20237,7 +24675,7 @@ B<maybe_regex>
 
 B<cmp_ok>
 
-B<BAILOUT>
+B<BAIL_OUT>
 
 B<skip>
 
@@ -20255,7 +24693,7 @@ B<level>
 
 B<use_numbers>
 
-B<no_header>, B<no_ending>
+B<no_diag>, B<no_ending>, B<no_header>
 
 =over 4
 
@@ -20309,33 +24747,112 @@ B<_my_exit>
 
 =back
 
-=head2 Test::Harness - Run Perl standard test scripts with statistics
+=head2 Test::Builder::Module - Base class for test modules
 
 =over 4
 
-=item VERSION
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Importing
+
+=back
+
+=back
+
+=over 4
+
+=item Builder
+
+=back
+
+=head2 Test::Builder::Tester - test testsuites that have been built with
+Test::Builder
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=over 4
+
+=item Methods
+
+test_out, test_err
+
+=back
+
+test_fail
+
+test_diag
+
+test_test, title (synonym 'name', 'label'), skip_out, skip_err
+
+line_num
+
+color
+
+=over 4
+
+=item BUGS
+
+=item AUTHOR
+
+=item NOTES
+
+=item SEE ALSO
 
 =back
 
+=head2 Test::Builder::Tester::Color - turn on colour in
+Test::Builder::Tester
+
 =over 4
 
 =item SYNOPSIS
 
 =item DESCRIPTION
 
+=back
+
+=over 4
+
+=item AUTHOR
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
+=head2 Test::Harness - Run Perl standard test scripts with statistics
+
+=over 4
+
+=item VERSION
+
+=back
+
 =over 4
 
-=item The test script output
+=item SYNOPSIS
+
+=item DESCRIPTION
 
-B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
-B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
-else>
+=over 4
 
 =item Taint mode
 
 =item Configuration variables.
 
-B<$Test::Harness::Verbose>, B<$Test::Harness::switches>
+C<$Test::Harness::Verbose>, C<$Test::Harness::switches>,
+C<$Test::Harness::Timer>
 
 =item Failure
 
@@ -20371,20 +24888,19 @@ C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
 %s>, C<FAILED--Further testing stopped: %s>
 
-=item ENVIRONMENT
+=item ENVIRONMENT VARIABLES THAT TEST::HARNESS SETS
 
-C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
-C<HARNESS_DEBUG>, C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>,
-C<HARNESS_NOTTY>, C<HARNESS_OK_SLOW>, C<HARNESS_PERL>,
-C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
+C<HARNESS_ACTIVE>, C<HARNESS_VERSION>
 
-=item EXAMPLE
+=item ENVIRONMENT VARIABLES THAT AFFECT TEST::HARNESS
 
-=item SEE ALSO
+C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>, C<HARNESS_DEBUG>,
+C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
+C<HARNESS_PERL>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
 
-=item AUTHORS
+=item EXAMPLE
 
-=item LICENSE
+=item SEE ALSO
 
 =item TODO
 
@@ -20440,6 +24956,36 @@ C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
 
 =back
 
+=head2 Test::Harness::Point - object for tracking a single test point
+
+=over 4
+
+=item SYNOPSIS
+
+=item CONSTRUCTION
+
+=over 4
+
+=item new()
+
+=back
+
+=back
+
+=over 4
+
+=item from_test_line( $line )
+
+=back
+
+=over 4
+
+=item ACCESSORS
+
+ok, number
+
+=back
+
 =head2 Test::Harness::Straps - detailed analysis of test results
 
 =over 4
@@ -20448,11 +24994,11 @@ C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
 
 =item DESCRIPTION
 
-=item Construction
+=item CONSTRUCTION
 
 =over 4
 
-=item C<new>
+=item new()
 
 =back
 
@@ -20460,17 +25006,17 @@ C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
 
 =over 4
 
-=item C<_init>
+=item $strap->_init
 
 =back
 
 =over 4
 
-=item Analysis
+=item ANALYSIS
 
 =over 4
 
-=item C<analyze>
+=item $strap->analyze( $name, \@output_lines )
 
 =back
 
@@ -20478,55 +25024,55 @@ C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
 
 =over 4
 
-=item C<analyze_fh>
+=item $strap->analyze_fh( $name, $test_filehandle )
 
 =back
 
 =over 4
 
-=item C<analyze_file>
+=item $strap->analyze_file( $test_file )
 
 =back
 
 =over 4
 
-=item C<_command_line( $file )>
+=item $strap->_command_line( $file )
 
 =back
 
 =over 4
 
-=item C<_command>
+=item $strap->_command()
 
 =back
 
 =over 4
 
-=item C<_switches>
+=item $strap->_switches( $file )
 
 =back
 
 =over 4
 
-=item C<_cleaned_switches>
+=item $strap->_cleaned_switches( @switches_from_user )
 
 =back
 
 =over 4
 
-=item C<_INC2PERL5LIB>
+=item $strap->_INC2PERL5LIB
 
 =back
 
 =over 4
 
-=item C<_filtered_INC>
+=item $strap->_filtered_INC()
 
 =back
 
 =over 4
 
-=item C<_restore_PERL5LIB>
+=item $strap->_restore_PERL5LIB()
 
 =back
 
@@ -20536,7 +25082,7 @@ C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
 
 =over 4
 
-=item C<_is_comment>
+=item C<_is_diagnostic>
 
 =back
 
@@ -20550,41 +25096,101 @@ C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
 
 =over 4
 
-=item C<_is_test>
+=item C<_is_bail_out>
 
 =back
 
 =over 4
 
-=item C<_is_bail_out>
+=item C<_reset_file_state>
 
 =back
 
 =over 4
 
-=item C<_reset_file_state>
+=item Results
+
+=item EXAMPLES
+
+=item AUTHOR
+
+=item SEE ALSO
 
 =back
 
+=head2 Test::Harness::TAP - Documentation for the TAP format
+
 =over 4
 
-=item Results
+=item SYNOPSIS
+
+=item TODO
+
+=item THE TAP FORMAT
+
+=item HARNESS BEHAVIOR
+
+=item TESTS LINES AND THE PLAN
 
 =over 4
 
-=item C<_detailize>
+=item The plan
+
+=item The test line
+
+C<ok> or C<not ok>, Test number, Description, Directive, ok/not ok
+(required), Test number (recommended), Description (recommended), Directive
+(only when necessary)
 
 =back
 
+=item DIRECTIVES
+
+=over 4
+
+=item TODO tests
+
+=item Skipping tests
+
 =back
 
+=item OTHER LINES
+
 =over 4
 
+=item Bail out!
+
+=item Diagnostics
+
+=item Anything else
+
+=back
+
 =item EXAMPLES
 
-=item AUTHOR
+=over 4
 
-=item SEE ALSO
+=item Common with explanation
+
+=item Unknown amount and failures
+
+=item Giving up
+
+=item Skipping a few
+
+=item Skipping everything
+
+=item Got spare tuits?
+
+=item Creative liberties
+
+=back
+
+=item AUTHORS
+
+=item ACKNOWLEDGEMENTS
+
+=item COPYRIGHT
 
 =back
 
@@ -20630,21 +25236,29 @@ B<pass>, B<fail>
 
 =over 4
 
-=item Diagnostics
+=item Module tests
 
-B<diag>
+B<use_ok>
 
 =back
 
+B<require_ok>
+
 =over 4
 
-=item Module tests
+=item Complex data structures
 
-B<use_ok>
+B<is_deeply>
 
 =back
 
-B<require_ok>
+=over 4
+
+=item Diagnostics
+
+B<diag>
+
+=back
 
 =over 4
 
@@ -20660,14 +25274,20 @@ When do I use SKIP vs. TODO?
 
 =over 4
 
-=item Comparison functions
+=item Test control
 
-B<is_deeply>
+B<BAIL_OUT>
 
 =back
 
+=over 4
+
+=item Discouraged comparison functions
+
 B<eq_array>
 
+=back
+
 B<eq_hash>
 
 B<eq_set>
@@ -20899,7 +25519,7 @@ unexpand(1)
 
 =item BUGS
 
-=item AUTHOR
+=item LICENSE
 
 =back
 
@@ -20915,7 +25535,7 @@ unexpand(1)
 
 =item EXAMPLE
 
-=item AUTHOR
+=item LICENSE
 
 =back
 
@@ -21202,11 +25822,13 @@ timers
 
 =item DESCRIPTION
 
-gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
-$interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
-alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer (
-$which, $floating_seconds [, $interval_floating_seconds ] ), getitimer (
-$which )
+gettimeofday (), usleep ( $useconds ), nanosleep ( $nanoseconds ), ualarm (
+$useconds [, $interval_useconds ] ), tv_interval, time (), sleep (
+$floating_seconds ), alarm ( $floating_seconds [,
+$interval_floating_seconds ] ), setitimer ( $which, $floating_seconds [,
+$interval_floating_seconds ] ), getitimer ( $which ), clock_gettime (
+$which ), clock_getres ( $which ), clock_nanosleep ( $which, $seconds,
+$flags = 0), clock()
 
 =item EXAMPLES
 
@@ -21224,6 +25846,8 @@ $which )
 
 =item CAVEATS
 
+=item SEE ALSO
+
 =item AUTHORS
 
 =item COPYRIGHT AND LICENSE
@@ -21308,9 +25932,10 @@ function
 
 =item DESCRIPTION
 
-C<< $obj->isa( TYPE ) >>, C<< CLASS->isa( TYPE ) >>, C<isa( VAL, TYPE )>,
-C<TYPE>, C<$obj>, C<CLASS>, C<VAL>, C<< $obj->can( METHOD ) >>, C<<
-CLASS->can( METHOD ) >>, C<can( VAL, METHOD )>, C<VERSION ( [ REQUIRE ] )>
+C<< $obj->isa( TYPE ) >>, C<< CLASS->isa( TYPE ) >>, C<< eval { VAL->isa(
+TYPE ) } >>, C<TYPE>, C<$obj>, C<CLASS>, C<VAL>, C<< $obj->can( METHOD )
+>>, C<< CLASS->can( METHOD ) >>, C<< eval { VAL->can( METHOD ) } >>,
+C<VERSION ( [ REQUIRE ] )>
 
 =item EXPORTS
 
@@ -21328,10 +25953,10 @@ CLASS->can( METHOD ) >>, C<can( VAL, METHOD )>, C<VERSION ( [ REQUIRE ] )>
 
 =item Constructor and Tailoring
 
-UCA_Version, backwards, entry, hangul_terminator, ignoreName, ignoreChar,
-level, normalization, overrideCJK, overrideHangul, preprocess, rearrange,
-table, undefName, undefChar, katakana_before_hiragana, upper_before_lower,
-variable, alternate
+UCA_Version, alternate, backwards, entry, hangul_terminator, ignoreChar,
+ignoreName, katakana_before_hiragana, level, normalization, overrideCJK,
+overrideHangul, preprocess, rearrange, table, undefChar, undefName,
+upper_before_lower, variable
 
 =item Methods for Collation
 
@@ -21358,21 +25983,23 @@ $Collator-E<gt>gsubst($string, $substring, $replacement)>
 C<%old_tailoring = $Collator-E<gt>change(%new_tailoring)>, C<$version =
 $Collator-E<gt>version()>, C<UCA_Version()>, C<Base_Unicode_Version()>
 
+=back
+
 =item EXPORT
 
-=item CAVEAT
+=item INSTALL
 
-=item Conformance Test
+=item CAVEATS
 
-=back
+Normalization, Conformance Test
 
-=item AUTHOR
+=item AUTHOR, COPYRIGHT AND LICENSE
 
 =item SEE ALSO
 
 Unicode Collation Algorithm - UTS #10, The Default Unicode Collation
 Element Table (DUCET), The conformance test for the UCA, Hangul Syllable
-Type, Unicode Normalization Forms - UAX #15, L<Unicode::Normalize>
+Type, Unicode Normalization Forms - UAX #15
 
 =back
 
@@ -21416,9 +26043,14 @@ isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
 C<$is_non_starter_decomposition = isNonStDecomp($codepoint)>,
 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
 
+=back
+
 =item EXPORT
 
-=back
+=item CAVEATS
+
+Perl's version vs. Unicode version, Correction of decomposition mapping,
+Revised definition of canonical composition
 
 =item AUTHOR
 
@@ -21426,7 +26058,8 @@ C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
 
 http://www.unicode.org/reports/tr15/,
 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt,
-http://www.unicode.org/notes/tn5/
+http://www.unicode.org/Public/UNIDATA/NormalizationCorrections.txt,
+http://www.unicode.org/review/pr-29.html, http://www.unicode.org/notes/tn5/
 
 =back
 
@@ -21502,6 +26135,12 @@ http://www.unicode.org/notes/tn5/
 
 =over 4
 
+=item namedseq()
+
+=back
+
+=over 4
+
 =item Unicode::UCD::UnicodeVersion
 
 =back
@@ -21564,6 +26203,8 @@ March 18th, 2000
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
@@ -21584,9 +26225,21 @@ March 18th, 2000
 
 =back
 
+=item DIAGNOSTICS
+
+Can't find '%s' symbol in %s, Can't load '%s' for module %s: %s, Undefined
+symbols present after loading %s: %s, XSLoader::load('Your::Module',
+$Your::Module::VERSION)
+
 =item LIMITATIONS
 
-=item AUTHOR
+=item BUGS
+
+=item SEE ALSO
+
+=item AUTHORS
+
+=item COPYRIGHT
 
 =back