diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-09-12 23:11:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-09-12 23:11:45 +0000 |
commit | 9cb6ed42173576c510ef1c29c778425530c66d50 (patch) | |
tree | 5204ac7307802e33e16c4332352665b5ba431353 /lib/Carp.pm | |
parent | 955623668f666142789ec391e521b0b6705cea7b (diff) | |
download | perl-9cb6ed42173576c510ef1c29c778425530c66d50.tar.gz |
Carp's argument backtrace code would show undef as "undef" - a string.
p4raw-id: //depot/perl@31858
Diffstat (limited to 'lib/Carp.pm')
-rw-r--r-- | lib/Carp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Carp.pm b/lib/Carp.pm index 52ccd76092..393b126d4a 100644 --- a/lib/Carp.pm +++ b/lib/Carp.pm @@ -1,6 +1,6 @@ package Carp; -our $VERSION = '1.07'; +our $VERSION = '1.08'; # this file is an utra-lightweight stub. The first time a function is # called, Carp::Heavy is loaded, and the real short/longmessmess_jmp # subs are installed |