in reply to Re: Regarding B::Deparse
in thread Regarding B::Deparse
It turns out that B::Deparse was putting in "\n"s into the string that was declared at the top of It Came From the Crypt. It then thought that everything would be alright if it changed the next substitution to get rid of them, except that it wasn't. If you run B::Deparse and shove the contents into a file, then to run that you need to modify the first substitution so that it does nothing to the poor "\n"s.
That seems to do it for me at least (running perl 5.6 on a redhat box). Anyone else? Also, why does Perl insert the carriage returns and then change a regex to deal with it? That seems odd...#change this: $u=$q=~s/\n\s//xg && -2; #to this $u=$q=~s/\s//xg && -2;
jynx
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Regarding B::Deparse
by blakem (Monsignor) on Oct 20, 2001 at 01:41 UTC | |
by robin (Chaplain) on Dec 19, 2001 at 18:37 UTC |