wp_ljoin

one of the documented procedures in this installation of the ACS
Usage:
wp_ljoin   list   values
What it does:
Appends each of values (a list) to the list.
Defined in: /web/philip/tcl/wp-defs.tcl

Source code:


    upvar $list ll
    foreach v $values {
	lappend ll $v
    }


philg@mit.edu