Thanks,
Daniel
If by remove all references to a proc means just to delete the proc
itself then:
rename your_proc {}
is the command you look for.
If any code calls your_proc after you delete it like this, it will fail
and throw an error.
If you want to delete all _calls_ to a proc you will need some rather
complex trickery with tcl 8.4 [trace add execution]/[trace add command]
and introspection to modify the callers.
Michael Schlenker
Thank you,
Daniel