summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Porting/pumpkin.pod2
-rw-r--r--ext/B/B/Concise.pm4
-rw-r--r--ext/Data/Dumper/Dumper.pm2
-rw-r--r--lib/FileCache.pm2
4 files changed, 7 insertions, 3 deletions
diff --git a/Porting/pumpkin.pod b/Porting/pumpkin.pod
index 01b563f267..0d80fb8725 100644
--- a/Porting/pumpkin.pod
+++ b/Porting/pumpkin.pod
@@ -711,6 +711,8 @@ branches.
=head2 Other tests
+=over 4
+
=item gcc -ansi -pedantic
Configure -Dgccansipedantic [ -Dcc=gcc ] will enable (via the cflags script,
diff --git a/ext/B/B/Concise.pm b/ext/B/B/Concise.pm
index d24f85706d..1be400971e 100644
--- a/ext/B/B/Concise.pm
+++ b/ext/B/B/Concise.pm
@@ -1247,7 +1247,7 @@ Private flags, if any are set for an opcode, are displayed after a '/'
They're opcode specific, and occur less often than the public ones, so
they're represented by short mnemonics instead of single-chars; see
-L<op.h> for gory details, or try this quick 2-liner:
+F<op.h> for gory details, or try this quick 2-liner:
$> perl -MB::Concise -de 1
DB<1> |x \%B::Concise::priv
@@ -1343,7 +1343,7 @@ rendering of each opcode.
Only some of these are used by the standard styles, the others are
provided for you to delve into optree mechanics, should you wish to
add a new style (see L</add_style> below) that uses them. You can
-also add new ones using L<add_callback>.
+also add new ones using L</add_callback>.
=over 4
diff --git a/ext/Data/Dumper/Dumper.pm b/ext/Data/Dumper/Dumper.pm
index bb7916b97b..b7fe1d61e7 100644
--- a/ext/Data/Dumper/Dumper.pm
+++ b/ext/Data/Dumper/Dumper.pm
@@ -1222,7 +1222,7 @@ Someday, perl will have a switch to cache-on-demand the string
representation of a compiled piece of code, I hope. If you have prior
knowledge of all the code refs that your data structures are likely
to have, you can use the C<Seen> method to pre-seed the internal reference
-table and make the dumped output point to them, instead. See L<EXAMPLES>
+table and make the dumped output point to them, instead. See L</EXAMPLES>
above.
The C<Useqq> and C<Deparse> flags makes Dump() run slower, since the
diff --git a/lib/FileCache.pm b/lib/FileCache.pm
index 7a2aa89df6..75a36dd66b 100644
--- a/lib/FileCache.pm
+++ b/lib/FileCache.pm
@@ -52,6 +52,8 @@ append them to the command string as you would system EXPR.
Returns EXPR on success for convenience. You may neglect the
return value and manipulate EXPR as the filehandle directly if you prefer.
+=back
+
=head1 CAVEATS
While it is permissible to C<close> a FileCache managed file,