ad_call_proc_if_exists

one of the documented procedures in this installation of the ACS
Usage:
ad_call_proc_if_exists   proc   args
What it does:
Calls a procedure with particular arguments, only if the procedure is defined.
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    if { [llength [info procs $proc]] == 1 } {
	eval $proc $args
    }


philg@mit.edu