Skip Menu |

This queue is for tickets about the Macrame CPAN distribution.

Report information
The Basics
Id: 31201
Status: resolved
Priority: 0/
Queue: Macrame

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

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



Subject: Import lists in "use" do not work after using Macrame
The following script does not work: use Macrame; use Text::Tabs qw(expand); The error is "Can't locate Text/Tabsqw.pm in @INC ..." Single quotes also do not work: use Macrame; use Text::Tabs 'expand'; Can't find string terminator "'" anywhere before EOF at ... Double quotes seem to be OK, also if the use statement comes before using Macrame. Regards, Slaven
On Tue Dec 04 11:53:13 2007, SREZIC wrote: Show quoted text
> The following script does not work: > > use Macrame; > use Text::Tabs qw(expand); > > The error is "Can't locate Text/Tabsqw.pm in @INC ..." > > Single quotes also do not work: > > use Macrame; > use Text::Tabs 'expand'; > > Can't find string terminator "'" anywhere before EOF at ... > > Double quotes seem to be OK, also if the use statement comes before > using Macrame. > > Regards, > Slaven
Thanks for reporting this. Apparently the whitespace normalizer needs to be kicked.
This seems to work now. Thanks, Slaven