diff options
author | coral@eekeek.org <coral@eekeek.org> | 2001-12-28 14:58:22 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-29 15:35:00 +0000 |
commit | 7207e29d564e32c8ec2cb43eabae72ff68c02442 (patch) | |
tree | bb40d411a530f4479f2f567dd24c156f50cdd657 /pod | |
parent | e0d72a37764501c52aeed41ca710cf763afa8755 (diff) | |
download | perl-7207e29d564e32c8ec2cb43eabae72ff68c02442.tar.gz |
Pod whitespace cleanup, round 0.
Message-Id: <200112290058.fBT0wMD26750@eekeek.org>
p4raw-id: //depot/perl@13930
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl561delta.pod | 2 | ||||
-rw-r--r-- | pod/perl572delta.pod | 2 | ||||
-rw-r--r-- | pod/perlapi.pod | 4 | ||||
-rw-r--r-- | pod/perldelta.pod | 4 | ||||
-rw-r--r-- | pod/perlfaq4.pod | 2 | ||||
-rw-r--r-- | pod/perlfaq6.pod | 4 | ||||
-rw-r--r-- | pod/perlfaq7.pod | 2 | ||||
-rw-r--r-- | pod/perlfunc.pod | 2 | ||||
-rw-r--r-- | pod/perlpacktut.pod | 4 | ||||
-rw-r--r-- | pod/perlunicode.pod | 2 | ||||
-rw-r--r-- | pod/perlxs.pod | 12 |
11 files changed, 20 insertions, 20 deletions
diff --git a/pod/perl561delta.pod b/pod/perl561delta.pod index 9ac85452e0..e6c166c85e 100644 --- a/pod/perl561delta.pod +++ b/pod/perl561delta.pod @@ -601,7 +601,7 @@ send() works from within a pseudo-process. Unless specifically qualified otherwise, the remainder of this document covers changes between the 5.005 and 5.6.0 releases. - + =head1 Core Enhancements =head2 Interpreter cloning, threads, and concurrency diff --git a/pod/perl572delta.pod b/pod/perl572delta.pod index 1e7251e33d..c080ee85e1 100644 --- a/pod/perl572delta.pod +++ b/pod/perl572delta.pod @@ -706,7 +706,7 @@ many more tests than there used to be. Here are the known failures from some compiler/platform combinations. DEC C V5.3-006 on OpenVMS VAX V6.2 - + [-.ext.list.util.t]tainted..............FAILED on test 3 [-.ext.posix]sigaction..................FAILED on test 7 [-.ext.time.hires]hires.................FAILED on test 14 diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 6f8ccc1922..af2794bbb7 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -1593,9 +1593,9 @@ Found in file handy.h Returns a pointer to the next character after the parsed vstring, as well as updating the passed in sv. - * + Function must be called like - + sv = NEWSV(92,5); s = new_vstring(s,sv); diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 9ac2964b02..a074ead057 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -2493,9 +2493,9 @@ There are a few known test failures, see L<perluts>. =head2 VMS There is one known test failure with a default configuration: - + [.run]switches..........................FAILED on test 1 - + =head2 Win32 In multi-CPU boxes there are some problems with the I/O buffering: diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod index d145eb643e..e816fb3893 100644 --- a/pod/perlfaq4.pod +++ b/pod/perlfaq4.pod @@ -142,7 +142,7 @@ Using perl's built in conversion of 0x notation: $int = 0xDEADBEEF; $dec = sprintf("%d", $int); - + Using the hex function: $int = hex("DEADBEEF"); diff --git a/pod/perlfaq6.pod b/pod/perlfaq6.pod index fe53ea8ab0..91323fab31 100644 --- a/pod/perlfaq6.pod +++ b/pod/perlfaq6.pod @@ -218,10 +218,10 @@ longer than the original, you can use this code, by Jeff Pinyan: sub preserve_case { my ($from, $to) = @_; my ($lf, $lt) = map length, @_; - + if ($lt < $lf) { $from = substr $from, 0, $lt } else { $from .= substr $to, $lf } - + return uc $to | ($from ^ uc $from); } diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod index e0b2e8e0fb..7aec723071 100644 --- a/pod/perlfaq7.pod +++ b/pod/perlfaq7.pod @@ -170,7 +170,7 @@ you should study L<perlxstut>. The C<h2xs> program will create stubs for all the important stuff for you: % h2xs -XA -n My::Module - + The C<-X> switch tells C<h2xs> that you are not using C<XS> extension code. The C<-A> switch tells C<h2xs> that you are not using the AutoLoader, and the C<-n> switch specifies the name of the module. diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 39a6ea4cab..93383d3f01 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -2752,7 +2752,7 @@ and opening C<< '>-' >> opens STDOUT. You may use the three-argument form of open to specify I<I/O disciplines> that affect how the input and output are processed: see L</binmode> and L<open>. For example - + open(FH, "<:utf8", "file") will open the UTF-8 encoded file containing Unicode characters, diff --git a/pod/perlpacktut.pod b/pod/perlpacktut.pod index 423ab03ae1..2c5f1ec8d0 100644 --- a/pod/perlpacktut.pod +++ b/pod/perlpacktut.pod @@ -109,7 +109,7 @@ numbers - which we've had to count by hand. So it's error-prone as well as horribly unfriendly. Or maybe we could use regular expressions: - + while (<>) { my($date, $desc, $income, $expend) = m|(\d\d/\d\d/\d{4}) (.{27}) (.{7})(.*)|; @@ -661,7 +661,7 @@ cannot be unpacked naively: # pack a message my $msg = pack( 'Z*Z*CA*C', $src, $dst, length( $sm ), $sm, $prio ); - + # unpack fails - $prio remains undefined! ( $src, $dst, $len, $sm, $prio ) = unpack( 'Z*Z*CA*C', $msg ); diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index db5a475914..22fddb8437 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -644,7 +644,7 @@ Level 1 - Basic Unicode Support [ 9] see UTR#13 Unicode Newline Guidelines [10] should do ^ and $ also on \x{85}, \x{2028} and \x{2029}) (should also affect <>, $., and script line numbers) - + (*) You can mimic class subtraction using lookahead. For example, what TR18 might write as diff --git a/pod/perlxs.pod b/pod/perlxs.pod index 0398641962..c9f7cc8549 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -1722,20 +1722,20 @@ Below is an example module that makes use of the macros. #include "EXTERN.h" #include "perl.h" #include "XSUB.h" - + /* Global Data */ - + #define MY_CXT_KEY "BlindMice::_guts" XS_VERSION - + typedef struct { int count; char name[3][100]; } my_cxt_t; - + START_MY_CXT - + MODULE = BlindMice PACKAGE = BlindMice - + BOOT: { MY_CXT_INIT; |