Back to RCL Command Index
No arguments accepted.
Description:
This procedure sources all the rcl scripts stored in the directory specified by the configuration variable, RIGILIB. RIGILIB is typically set to RIGI/Rigi/rcl. The procedure can be called to redefine a procedure that has been overridden. This procedure should be used with care because the files in the directory may not be the same as those declared in tclIndex.
Return Value:
None.
Exceptions:
None.
Example:
# Suppose that you have overridden the rcl_reset
# proc in some other script:
proc rcl_reset {} {
puts "Overridden rcl_reset proc"
}
# To reinitialize this proc and all other core
# procedures, call rcl_init_core.
rcl_init_core
Back to RCL Command Index |