On Thu, Oct 25, 2001 at 12:09:25AM -0600, Keary Suska wrote: > I would, except I can't quite predict where the error could happen, which > means I would have to eval the whole script, and being several thousands of > lines long, not including the modules I am loading, it really hurts > performance ;-)
The block form of eval does not have any impact on performance. It simply provides trapping of runtime errors, which is, after all, what you were asking for. :) Ronald