Skip Menu |

This queue is for tickets about the MARC-Record CPAN distribution.

Report information
The Basics
Id: 61902
Status: resolved
Priority: 0/
Queue: MARC-Record

People
Owner: Nobody in particular
Requestors: alex.arnaud [...] biblibre.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: patch for MARC::Record: Import carp from Carp package
Date: Tue, 05 Oct 2010 11:14:08 +0200
To: bug-MARC-Record [...] rt.cpan.org
From: Alex Arnaud <alex.arnaud [...] biblibre.com>
hi, Please find a patch which fix a problem with Carp::carp in Record.pm. I hope this is the right way to do that :) regards Alex Arnaud
From 0e6f77ab00c8b5af209ecbc0128a1c7aaa8a5b08 Mon Sep 17 00:00:00 2001 From: Alex Arnaud <alex.arnaud@biblibre.com> Date: Tue, 5 Oct 2010 10:52:22 +0200 Subject: [PATCH] Import carp symbol from Carp in Record.pm --- marc-record/lib/MARC/Record.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/marc-record/lib/MARC/Record.pm b/marc-record/lib/MARC/Record.pm index 7b3624a..187daa4 100644 --- a/marc-record/lib/MARC/Record.pm +++ b/marc-record/lib/MARC/Record.pm @@ -12,7 +12,7 @@ use integer; use vars qw( $ERROR ); use MARC::Field; -use Carp qw(croak); +use Carp qw(croak carp); =head1 VERSION -- 1.6.3.3
On Tue Oct 05 05:14:31 2010, alex.arnaud@biblibre.com wrote: Show quoted text
> Please find a patch which fix a problem with Carp::carp in Record.pm. > I hope this is the right way to do that :)
Patch applied with thanks.