Show
Ignore:
Timestamp:
02/09/04 14:10:55 (5 years ago)
Author:
zacheiss
Message:

Import perl 5.8.3.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/vendor/third/perl/pod/perlpodspec.pod

    r18449 r20074  
    239239  sub foo { # This is the second. 
    240240 
    241 It is an error to try to I<start> a Pod black with a "=cut" command.  In 
     241It is an error to try to I<start> a Pod block with a "=cut" command.  In 
    242242that case, the Pod processor must halt parsing of the input file, and 
    243243must by default emit a warning. 
     
    332332to use "=for formatname text..." to express "text..." as a verbatim 
    333333paragraph. 
     334 
     335=item "=encoding encodingname" 
     336 
     337This command, which should occur early in the document (at least 
     338before any non-US-ASCII data!), declares that this document is 
     339encoded in the encoding I<encodingname>, which must be 
     340an encoding name that L<Encoding> recognizes.  (Encoding's list 
     341of supported encodings, in L<Encoding::Supported>, is useful here.) 
     342If the Pod parser cannot decode the declared encoding, it  
     343should emit a warning and may abort parsing the document 
     344altogether. 
     345 
     346A document having more than one "=encoding" line should be 
     347considered an error.  Pod processors may silently tolerate this if 
     348the not-first "=encoding" lines are just duplicates of the 
     349first one (e.g., if there's a "=use utf8" line, and later on 
     350another "=use utf8" line).  But Pod processors should complain if 
     351there are contradictory "=encoding" lines in the same document 
     352(e.g., if there is a "=encoding utf8" early in the document and 
     353"=encoding big5" later).  Pod processors that recognize BOMs 
     354may also complain if they see an "=encoding" line 
     355that contradicts the BOM (e.g., if a document with a UTF-16LE 
     356BOM has an "=encoding shiftjis" line). 
    334357 
    335358=back 
     
    590613 
    591614=for comment 
    592  If toke.c is modified to support UTF32, add mention of those here. 
     615 If toke.c is modified to support UTF-32, add mention of those here. 
    593616 
    594617=item *