summaryrefslogtreecommitdiff
path: root/dist/Carp/lib/Carp.pm
diff options
context:
space:
mode:
Diffstat (limited to 'dist/Carp/lib/Carp.pm')
-rw-r--r--dist/Carp/lib/Carp.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/Carp/lib/Carp.pm b/dist/Carp/lib/Carp.pm
index c08af19b0f..b4dce03e2b 100644
--- a/dist/Carp/lib/Carp.pm
+++ b/dist/Carp/lib/Carp.pm
@@ -24,7 +24,7 @@ BEGIN {
}
}
-our $VERSION = '1.24';
+our $VERSION = '1.25';
our $MaxEvalLen = 0;
our $Verbose = 0;
@@ -297,7 +297,7 @@ sub ret_backtrace {
$mess .= $1;
}
}
- $mess .= "\n";
+ $mess .= "\.\n";
while ( my %i = caller_info( ++$i ) ) {
$mess .= "\t$i{sub_name} called at $i{file} line $i{line}$tid_msg\n";
@@ -318,7 +318,7 @@ sub ret_summary {
}
my %i = caller_info($i);
- return "$err at $i{file} line $i{line}$tid_msg\n";
+ return "$err at $i{file} line $i{line}$tid_msg\.\n";
}
sub short_error_loc {