Index: openacs-4/packages/acs-outdated/tcl/acs-tcl-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-outdated/tcl/acs-tcl-procs.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-outdated/tcl/acs-tcl-procs.tcl 25 Apr 2018 19:47:46 -0000 1.3 +++ openacs-4/packages/acs-outdated/tcl/acs-tcl-procs.tcl 9 May 2018 15:33:28 -0000 1.4 @@ -2,7 +2,7 @@ Applies proc_name to each item of the list, appending the result of each call to a new list that is the return value. } { - set lmap {} + set lmap [list] foreach item $list { lappend lmap [safe_eval $proc_name $item] }