Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-08-09 12:10:04 -0700 (Thu, 09 Aug 2007)
Revision: 11945
Log message:

      Changed Sequence.foreach to a curried function.
     
        curry.foreach() =
           private.THIS = $(this)
           g(f) =
              export
              sequence-map($(f), $(THIS))
     
     The curried functions are working fine.  But see that plain
     "export"?  That means private values are not going to be
     exported.

Changes  Path(relative to omake-branches/jumbo/curry)
+6 -3 lib/Pervasives.om
+1 -1 src/env/omake_env.ml
+1 -1 src/eval/omake_eval.ml
+9 -4 test/object/Test14
+4 -5 test/object/Test15