X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperldebug.pod;h=326bdab503fb1241ed21b01cb92a48a0fb553d67;hb=03d70c897754d6af90de9d0ffe2857d000d6f2d7;hp=5b7a2bdbb0e737664b706359818e06c99d002313;hpb=055fd3a96a4b067d75446c3d47ffc318e9acc40d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perldebug.pod b/pod/perldebug.pod index 5b7a2bd..326bdab 100644 --- a/pod/perldebug.pod +++ b/pod/perldebug.pod @@ -68,7 +68,7 @@ You may change the pager which is used via C command. =item p expr Same as C in the current package. In particular, -because this is just Perl's own B function, this means that nested +because this is just Perl's own C function, this means that nested data structures and objects are not dumped, unlike with the C command. The C filehandle is opened to F, regardless of @@ -82,7 +82,7 @@ recursively, unlike the real C function in Perl. See L if you'd like to do this yourself. The output format is governed by multiple options described under -L<"Options">. +L<"Configurable Options">. =item V [pkg [vars]] @@ -182,10 +182,12 @@ accessible. =item /pattern/ Search forwards for pattern (a Perl regex); final / is optional. +The search is case-insensitive by default. =item ?pattern? Search backwards for pattern; final ? is optional. +The search is case-insensitive by default. =item L @@ -211,7 +213,7 @@ breakpoint on the line about to be executed. If a condition is specified, it's evaluated each time the statement is reached: a breakpoint is taken only if the condition is true. Breakpoints may only be set on lines that begin an executable statement. Conditions -don't use B: +don't use C: b 237 $x > 30 b 237 ++$count237 < 11 @@ -308,8 +310,8 @@ For historical reasons, the C<=value> is optional, but defaults to 1 only where it is safe to do so--that is, mostly for Boolean options. It is always better to assign a specific value using C<=>. The C