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
      

Changes  Path
+138 -138 omake-branches/0.9.8.x/src/Makefile
+138 -138 omake-branches/0.9.8.x/src/Makefile.nt
+2 -2 omake-branches/0.9.8.x/src/builtin/omake_builtin_base.ml
+1 -1 omake-branches/0.9.8.x/src/builtin/omake_builtin_file.ml
+5 -0 omake-branches/0.9.8.x/src/eval/omake_value.ml
+4 -3 omake-branches/0.9.8.x/src/eval/omake_value.mli