Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-12-05 19:57:15 -0800 (Tue, 05 Dec 2006)
Revision: 9822
Log message:
We have trouble with functions that use the concat_strings
function. The problem is that concat_strings, if given a singleton array,
exposes it.
concat_strings [v] = v
This is wrong in the following case, because it is an unquote.
concat_strings [ValString x] = ValString x
Perhaps we can fix it generically by defining:
concat_strings [v] = ValQuote v