in reply to Error ... at (eval 75) line 7974.
That should at least help you isolate the particular eval that is causing the problem. However, your real issue is a 7000 line file being eval'd at once. Once you know what string is being eval'd, I would recommend that you put the code in a file and test it running as a normally compiled script.
7000+ lines is awfully long for any script or module, even a test script. I usually try to keep them under 1000 lines and no more than 3000 in really unusual circumstances. You might want to think about how you can trim that down by
Best, beth
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Error ... at (eval 75) line 7974.
by Porculus (Hermit) on Apr 13, 2009 at 11:31 UTC | |
by syphilis (Archbishop) on Apr 13, 2009 at 12:45 UTC | |
by Bloodnok (Vicar) on Apr 13, 2009 at 13:22 UTC |