diff --git a/MANIFEST b/MANIFEST index e7135fe6d82e..a53055a1a114 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1802,9 +1802,6 @@ cpan/Pod-Escapes/lib/Pod/Escapes.pm Pod::Escapes cpan/Pod-Escapes/t/01_about_verbose.t test Pod::Escapes cpan/Pod-Escapes/t/10_main.t test Pod::Escapes cpan/Pod-Escapes/t/15_name2charnum.t test Pod::Escapes -cpan/Pod-Perldoc/corpus/no-head.pod test file for Pod-Perldoc -cpan/Pod-Perldoc/corpus/perlfunc.pod test file for Pod-Perldoc -cpan/Pod-Perldoc/corpus/utf8.pod test file for Pod-Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm guts of the 'perldoc' utility cpan/Pod-Perldoc/lib/Pod/Perldoc/BaseTo.pm utility module for perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc/GetOptsOO.pm options parsing for perldoc diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 825aa502bf6a..efb8119273fe 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -956,6 +956,9 @@ package Maintainers; # utils first 'perldoc', + # files only used for manual testing + qr[^corpus/], + # https://rt.cpan.org/Ticket/Display.html?id=116827 't/02_module_pod_output.t' ], diff --git a/cpan/Pod-Perldoc/corpus/no-head.pod b/cpan/Pod-Perldoc/corpus/no-head.pod deleted file mode 100644 index aa6381958a99..000000000000 --- a/cpan/Pod-Perldoc/corpus/no-head.pod +++ /dev/null @@ -1,5 +0,0 @@ -=pod - -This is a line of text - -=cut diff --git a/cpan/Pod-Perldoc/corpus/perlfunc.pod b/cpan/Pod-Perldoc/corpus/perlfunc.pod deleted file mode 100644 index 604123daf8b5..000000000000 --- a/cpan/Pod-Perldoc/corpus/perlfunc.pod +++ /dev/null @@ -1,8298 +0,0 @@ -=head1 NAME -X - -perlfunc - Perl builtin functions - -=head1 DESCRIPTION - -The functions in this section can serve as terms in an expression. -They fall into two major categories: list operators and named unary -operators. These differ in their precedence relationship with a -following comma. (See the precedence table in L.) List -operators take more than one argument, while unary operators can never -take more than one argument. Thus, a comma terminates the argument of -a unary operator, but merely separates the arguments of a list -operator. A unary operator generally provides scalar context to its -argument, while a list operator may provide either scalar or list -contexts for its arguments. If it does both, scalar arguments -come first and list argument follow, and there can only ever -be one such list argument. For instance, splice() has three scalar -arguments followed by a list, whereas gethostbyname() has four scalar -arguments. - -In the syntax descriptions that follow, list operators that expect a -list (and provide list context for elements of the list) are shown -with LIST as an argument. Such a list may consist of any combination -of scalar arguments or list values; the list values will be included -in the list as if each individual element were interpolated at that -point in the list, forming a longer single-dimensional list value. -Commas should separate literal elements of the LIST. - -Any function in the list below may be used either with or without -parentheses around its arguments. (The syntax descriptions omit the -parentheses.) If you use parentheses, the simple but occasionally -surprising rule is this: It I like a function, therefore it I a -function, and precedence doesn't matter. Otherwise it's a list -operator or unary operator, and precedence does matter. Whitespace -between the function and left parenthesis doesn't count, so sometimes -you need to be careful: - - print 1+2+4; # Prints 7. - print(1+2) + 4; # Prints 3. - print (1+2)+4; # Also prints 3! - print +(1+2)+4; # Prints 7. - print ((1+2)+4); # Prints 7. - -If you run Perl with the B<-w> switch it can warn you about this. For -example, the third line above produces: - - print (...) interpreted as function at - line 1. - Useless use of integer addition in void context at - line 1. - -A few functions take no arguments at all, and therefore work as neither -unary nor list operators. These include such functions as C