Jeremy Henty said: > So does the interpret split the modules/tcl code up into "once-only" > and "per-interpreter" parts? How is this split made? If a Tcl file > "source"s another file, is that file split too? I am not the expert on this, but I think it is simply that all procs are per interpreter, normal commands are once only.
The exception being "ns_eval", which you can use to make sure it gets run in every interpreter, a prime example being: ns_eval "package require tdom" to make sure tdom is loaded into every interpreter. Hope that helps, Bas. -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
