Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 10:02:29 -0700 (Mon, 02 Jul 2007)
Revision: 11185
Log message:

      Implement the --configure for the .STATIC sections correctly. Previous
     implementation would simply fail to consult the Omake_cache when --configure
     is given. However, the Omake_cache is used both for the caching of the .STATIC
     sections to disk and for the "memoization" of the .STATIC sections, while only
     the former function is supposed to be affected by --configure.
     
     The new implementation only checks for the --configure option when the cache
     is loaded from disk - and drops the loaded value table if --configure is
     present.
     
     This commit also pushes the processing of all the cache-related options
     (including -U and --depend) into Omake_cache.from_channel, instead of having
     each caller of Omake_cache.from_channel (currently we have two) have to do it
     independently.

Changes  Path
+34 -44 omake-branches/0.9.8.x/src/build/omake_build.ml
+1 -6 omake-branches/0.9.8.x/src/eval/omake_eval.ml
+30 -24 omake-branches/0.9.8.x/src/ir/omake_cache.ml
+2 -5 omake-branches/0.9.8.x/src/ir/omake_cache.mli

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 11:20:23 -0700 (Mon, 02 Jul 2007)
Revision: 11186
Log message:

      Added the .MEMO rules that are very similar to the .STATIC ones, except they
     are not cached in .omakedb

Changes  Path
+3 -3 omake-branches/0.9.8.x/src/build/omake_rule.ml
+2 -1 omake-branches/0.9.8.x/src/build/omake_rule.mli
+8 -7 omake-branches/0.9.8.x/src/builtin/omake_builtin_target.ml
+9 -7 omake-branches/0.9.8.x/src/env/omake_env.ml
+3 -1 omake-branches/0.9.8.x/src/env/omake_env.mli
+19 -12 omake-branches/0.9.8.x/src/env/omake_ir_ast.ml
+2 -2 omake-branches/0.9.8.x/src/eval/omake_eval.ml
+17 -12 omake-branches/0.9.8.x/src/ir/omake_cache.ml
+3 -3 omake-branches/0.9.8.x/src/ir/omake_cache.mli
+3 -6 omake-branches/0.9.8.x/src/ir/omake_ir.ml
+1 -1 omake-branches/0.9.8.x/src/ir/omake_symbol.ml
Copied omake-branches/0.9.8.x/test/memo/ (from rev 11184, omake-branches/0.9.8.x/test/static)
+1 -1 omake-branches/0.9.8.x/test/memo/Test1/static.om
+1 -1 omake-branches/0.9.8.x/test/memo/Test2/static.om
+1 -1 omake-branches/0.9.8.x/test/memo/Test3/static.om

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 11:40:43 -0700 (Mon, 02 Jul 2007)
Revision: 11187
Log message:

      - Run all tests with OMAKEFLAGS environment variable set to "--no--progress --no--print-status"
       in order to avoid any spurious errors due to variations in status output.
     
     - Run the .STATIC tests using omake instead of osh to test the .omakedb
       caching. Run omake twice (omake --configure; omake) for complete testing.

Changes  Path
+2 -2 omake-branches/0.9.8.x/test/OMakefile
+0 -1 omake-branches/0.9.8.x/test/shell/Test2/stdout.expected
Properties omake-branches/0.9.8.x/test/static/Test1/
Copied omake-branches/0.9.8.x/test/static/Test1/OMakeroot (from rev 11185, omake-branches/0.9.8.x/test/static/Test1/static.om)
+2 -0 omake-branches/0.9.8.x/test/static/Test1/OMakeroot (from rev 11185, omake-branches/0.9.8.x/test/static/Test1/static.om)
+2 -1 omake-branches/0.9.8.x/test/static/Test1/run.osh
Deleted omake-branches/0.9.8.x/test/static/Test1/static.om
+5 -0 omake-branches/0.9.8.x/test/static/Test1/stdout.expected
Properties omake-branches/0.9.8.x/test/static/Test2/
Copied omake-branches/0.9.8.x/test/static/Test2/OMakeroot (from rev 11185, omake-branches/0.9.8.x/test/static/Test2/static.om)
+2 -0 omake-branches/0.9.8.x/test/static/Test2/OMakeroot (from rev 11185, omake-branches/0.9.8.x/test/static/Test2/static.om)
+2 -1 omake-branches/0.9.8.x/test/static/Test2/run.osh
Deleted omake-branches/0.9.8.x/test/static/Test2/static.om
+12 -0 omake-branches/0.9.8.x/test/static/Test2/stdout.expected
Properties omake-branches/0.9.8.x/test/static/Test3/
Copied omake-branches/0.9.8.x/test/static/Test3/OMakeroot (from rev 11185, omake-branches/0.9.8.x/test/static/Test3/static.om)
+2 -0 omake-branches/0.9.8.x/test/static/Test3/OMakeroot (from rev 11185, omake-branches/0.9.8.x/test/static/Test3/static.om)
+2 -1 omake-branches/0.9.8.x/test/static/Test3/run.osh
Deleted omake-branches/0.9.8.x/test/static/Test3/static.om
+12 -0 omake-branches/0.9.8.x/test/static/Test3/stdout.expected

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 11:45:27 -0700 (Mon, 02 Jul 2007)
Revision: 11188
Log message:

      Run all the .MEMO tests using omake instead of osh to test any possible
     misinteractions with the  .omakedb caching. Run omake twice (omake
     --configure; omake) for complete testing.

Changes  Path
Properties omake-branches/0.9.8.x/test/memo/Test1/
Copied omake-branches/0.9.8.x/test/memo/Test1/OMakeroot (from rev 11186, omake-branches/0.9.8.x/test/memo/Test1/static.om)
+2 -0 omake-branches/0.9.8.x/test/memo/Test1/OMakeroot (from rev 11186, omake-branches/0.9.8.x/test/memo/Test1/static.om)
+2 -1 omake-branches/0.9.8.x/test/memo/Test1/run.osh
Deleted omake-branches/0.9.8.x/test/memo/Test1/static.om
+7 -0 omake-branches/0.9.8.x/test/memo/Test1/stdout.expected
Properties omake-branches/0.9.8.x/test/memo/Test2/
Copied omake-branches/0.9.8.x/test/memo/Test2/OMakeroot (from rev 11186, omake-branches/0.9.8.x/test/memo/Test2/static.om)
+2 -0 omake-branches/0.9.8.x/test/memo/Test2/OMakeroot (from rev 11186, omake-branches/0.9.8.x/test/memo/Test2/static.om)
+2 -1 omake-branches/0.9.8.x/test/memo/Test2/run.osh
Deleted omake-branches/0.9.8.x/test/memo/Test2/static.om
+12 -0 omake-branches/0.9.8.x/test/memo/Test2/stdout.expected
Properties omake-branches/0.9.8.x/test/memo/Test3/
Copied omake-branches/0.9.8.x/test/memo/Test3/OMakeroot (from rev 11186, omake-branches/0.9.8.x/test/memo/Test3/static.om)
+2 -0 omake-branches/0.9.8.x/test/memo/Test3/OMakeroot (from rev 11186, omake-branches/0.9.8.x/test/memo/Test3/static.om)
+2 -1 omake-branches/0.9.8.x/test/memo/Test3/run.osh
Deleted omake-branches/0.9.8.x/test/memo/Test3/static.om
+12 -0 omake-branches/0.9.8.x/test/memo/Test3/stdout.expected

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 12:12:29 -0700 (Mon, 02 Jul 2007)
Revision: 11189
Log message:

      Added Omake_util.pp_time that would print the time as
     "%0.2f sec", or
     "%d min %05.2f sec", or
     "%d hrs %02d min %05.2f sec"
     depending on how big it is. This follows Sam's (sds at gnu.org) suggestion
     from bug #680.

Changes  Path
+5 -4 omake-branches/0.9.8.x/src/build/omake_build.ml
+2 -1 omake-branches/0.9.8.x/src/exec/omake_exec_print.ml
+5 -3 omake-branches/0.9.8.x/src/exec/omake_exec_remote.ml
+19 -7 omake-branches/0.9.8.x/src/util/omake_util.ml
+7 -7 omake-branches/0.9.8.x/src/util/omake_util.mli

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 13:42:03 -0700 (Mon, 02 Jul 2007)
Revision: 11190
Log message:

      When processing the :key: dependency, we need to call the value_of_values in
     order to support the situation, where the key is a sequence containing arrays.

Changes  Path
+7 -8 omake-branches/0.9.8.x/src/builtin/omake_builtin_target.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 13:56:31 -0700 (Mon, 02 Jul 2007)
Revision: 11191
Log message:

      When processing interactive commands, define the __FILE__ variable (to a fake
     phony) in order for the .STATIC/.MEMO sections to work.

Changes  Path
+1 -0 omake-branches/0.9.8.x/src/main/omake_shell.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 14:14:28 -0700 (Mon, 02 Jul 2007)
Revision: 11192
Log message:

      Test case for bug 682.

Changes  Path
Copied omake-branches/0.9.8.x/test/memo/Test4/ (from rev 11186, omake-branches/0.9.8.x/test/memo/Test1)
+1 -1 omake-branches/0.9.8.x/test/memo/Test4/run.osh
Deleted omake-branches/0.9.8.x/test/memo/Test4/static.om
+3 -7 omake-branches/0.9.8.x/test/memo/Test4/stdout.expected

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 14:18:04 -0700 (Mon, 02 Jul 2007)
Revision: 11193
Log message:

      Forgot to commit the actual test.

Changes  Path
Added omake-branches/0.9.8.x/test/memo/Test4/memo.om

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 14:41:17 -0700 (Mon, 02 Jul 2007)
Revision: 11194
Log message:

      Regenerated the documentation.

Changes  Path
+335 -334 omake-branches/0.9.8.x/doc/html/omake-all-index.html
+24 -24 omake-branches/0.9.8.x/doc/html/omake-autoconf.html
+123 -123 omake-branches/0.9.8.x/doc/html/omake-build.html
+2 -2 omake-branches/0.9.8.x/doc/html/omake-contents.html
+791 -783 omake-branches/0.9.8.x/doc/html/omake-doc.html
+126 -125 omake-branches/0.9.8.x/doc/html/omake-fun-index.html
+17 -17 omake-branches/0.9.8.x/doc/html/omake-grammar.html
+1 -1 omake-branches/0.9.8.x/doc/html/omake-language.html
+26 -26 omake-branches/0.9.8.x/doc/html/omake-options.html
+27 -23 omake-branches/0.9.8.x/doc/html/omake-pervasives.html
+1 -1 omake-branches/0.9.8.x/doc/html/omake-references.html
+9 -9 omake-branches/0.9.8.x/doc/html/omake-shell.html
+81 -79 omake-branches/0.9.8.x/doc/html/omake-system.html
+3 -3 omake-branches/0.9.8.x/doc/html/omake-toc.html
+3 -3 omake-branches/0.9.8.x/doc/html/osh.html
+474 -471 omake-branches/0.9.8.x/doc/info/omake-doc.info
+2 -2 omake-branches/0.9.8.x/doc/info/omake-doc.info-1
+376 -1 omake-branches/0.9.8.x/doc/info/omake-doc.info-10
+241 -219 omake-branches/0.9.8.x/doc/info/omake-doc.info-2
+192 -197 omake-branches/0.9.8.x/doc/info/omake-doc.info-3
+205 -203 omake-branches/0.9.8.x/doc/info/omake-doc.info-4
+215 -232 omake-branches/0.9.8.x/doc/info/omake-doc.info-5
+211 -234 omake-branches/0.9.8.x/doc/info/omake-doc.info-6
+242 -142 omake-branches/0.9.8.x/doc/info/omake-doc.info-7
+148 -476 omake-branches/0.9.8.x/doc/info/omake-doc.info-8
+486 -376 omake-branches/0.9.8.x/doc/info/omake-doc.info-9
Binary omake-branches/0.9.8.x/doc/ps/omake-doc.dvi
Binary omake-branches/0.9.8.x/doc/ps/omake-doc.pdf
Binary omake-branches/0.9.8.x/doc/ps/omake-doc.ps
+1 -1 omake-branches/0.9.8.x/doc/src/omake-language-naming.tex
+1 -1 omake-branches/0.9.8.x/doc/src/omake-language.tex
+263 -43 omake-branches/0.9.8.x/doc/txt/omake-doc.txt

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 14:50:57 -0700 (Mon, 02 Jul 2007)
Revision: 11195
Log message:

      Fixing a typo.

Changes  Path
+1 -1 omake-branches/0.9.8.x/doc/src/omake-rules.tex

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-02 17:20:37 -0700 (Mon, 02 Jul 2007)
Revision: 11197
Log message:

      Minor correction in an error message.

Changes  Path
+1 -1 omake-branches/0.9.8.x/src/eval/omake_value.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-02 18:28:37 -0700 (Mon, 02 Jul 2007)
Revision: 11198
Log message:

     

Changes  Path
+134 -105 omake-research/omake-distrib/src/build/omake_build.ml
+13 -0 omake-research/omake-distrib/src/build/omake_build_type.ml
+1 -1 omake-research/omake-distrib/src/exec/omake_exec_remote.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-03 09:57:17 -0700 (Tue, 03 Jul 2007)
Revision: 11203
Log message:

      Adding a simple test (it passes fine, I just want to make sure it does so in
     the future).

Changes  Path
Properties omake-branches/0.9.8.x/test/simple/
Added omake-branches/0.9.8.x/test/simple/Test5

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-03 19:53:00 -0700 (Tue, 03 Jul 2007)
Revision: 11206
Log message:

      Moved in hooks for where I'll put my server. It looks like it will take nontrivial effort to weed out the old way of doing things.

Changes  Path
+3 -3 omake-research/omake-distrib/remote_schema
+74 -0 omake-research/omake-distrib/src/exec/omake_exec_remote.ml
+0 -0 omake-research/omake-distrib/src/exec/omake_exec_type.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-05 12:54:15 -0700 (Thu, 05 Jul 2007)
Revision: 11210
Log message:

      Bug 684 - fixing the sorting function.

Changes  Path
+45 -58 omake-branches/0.9.8.x/src/build/omake_build_util.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-06 10:35:09 -0700 (Fri, 06 Jul 2007)
Revision: 11214
Log message:

      Rev. 11158 follow-up. Jason have missed "public.Sequence = Sequence".
     
     Quoting from Jason's rev 11158 log message:
     
       This is an annoying naming problem.  It does not exist
       in var3 onward.

Changes  Path
+1 -0 omake-branches/0.9.8.x/lib/Pervasives.om

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-06 10:59:16 -0700 (Fri, 06 Jul 2007)
Revision: 11215
Log message:

      Bug: the Array.foreach function does not preserve exports!

Changes  Path
Added omake-branches/0.9.8.x/test/object/Test3

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-06 11:02:48 -0700 (Fri, 06 Jul 2007)
Revision: 11216
Log message:

      Bug: the Map.foreach function does not preserve exports!

Changes  Path
+1 -0 omake-branches/0.9.8.x/test/object/Test3
Copied omake-branches/0.9.8.x/test/object/Test4 (from rev 11215, omake-branches/0.9.8.x/test/object/Test3)
+12 -8 omake-branches/0.9.8.x/test/object/Test4 (from rev 11215, omake-branches/0.9.8.x/test/object/Test3)

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-06 11:29:15 -0700 (Fri, 06 Jul 2007)
Revision: 11217
Log message:

      Make sure the Object.object-foreach, Array.foreach and Map.foreach preserve
     the exported environment.

Changes  Path
+5 -2 omake-branches/0.9.8.x/lib/Pervasives.om
+1 -1 omake-branches/0.9.8.x/src/builtin/omake_builtin_object.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-06 11:45:15 -0700 (Fri, 06 Jul 2007)
Revision: 11218
Log message:

      A follow-up fix for Object.object-foreach and Map.foreach - the previous one
     was incomplete.

Changes  Path
+5 -5 omake-branches/0.9.8.x/src/builtin/omake_builtin_object.ml
Added omake-branches/0.9.8.x/test/object/Test5

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-12 15:15:01 -0700 (Thu, 12 Jul 2007)
Revision: 11245
Log message:

      Adding a string-length function.

Changes  Path
+29 -0 omake-branches/0.9.8.x/src/builtin/omake_builtin_base.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-12 15:30:17 -0700 (Thu, 12 Jul 2007)
Revision: 11247
Log message:

      Bug 685 - sprintf is buggy.

Changes  Path
Added omake-branches/0.9.8.x/test/simple/Test6

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-15 09:52:43 -0700 (Sun, 15 Jul 2007)
Revision: 11272
Log message:

      Do not force evaluation on variable references.
     That is, 0-arity applications should not be forced
     in Omake_eval.eval_var_export and eval_var.
     
     This addresses bug #682.

Changes  Path
+3 -2 omake-branches/0.9.8.x/src/eval/omake_eval.ml

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-15 10:56:10 -0700 (Sun, 15 Jul 2007)
Revision: 11275
Log message:

      Add test/simple/Test7 to test sprintf truncation with
     a somewhat easier to understand output.

Changes  Path
+1 -1 omake-branches/0.9.8.x/src/builtin/omake_builtin_io.ml
Added omake-branches/0.9.8.x/test/simple/Test7

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-15 12:21:56 -0700 (Sun, 15 Jul 2007)
Revision: 11276
Log message:

      Document the .MEMO and :key:

Changes  Path
+543 -540 omake-branches/0.9.8.x/doc/html/omake-all-index.html
+31 -31 omake-branches/0.9.8.x/doc/html/omake-autoconf.html
+119 -114 omake-branches/0.9.8.x/doc/html/omake-base.html
+138 -138 omake-branches/0.9.8.x/doc/html/omake-build.html
+450 -445 omake-branches/0.9.8.x/doc/html/omake-contents.html
+13 -13 omake-branches/0.9.8.x/doc/html/omake-detail.html
+2016 -1937 omake-branches/0.9.8.x/doc/html/omake-doc.html
+258 -257 omake-branches/0.9.8.x/doc/html/omake-fun-index.html
+35 -35 omake-branches/0.9.8.x/doc/html/omake-grammar.html
+11 -11 omake-branches/0.9.8.x/doc/html/omake-language-examples.html
+15 -15 omake-branches/0.9.8.x/doc/html/omake-language-naming.html
+63 -2 omake-branches/0.9.8.x/doc/html/omake-language.html
+34 -34 omake-branches/0.9.8.x/doc/html/omake-options.html
+23 -23 omake-branches/0.9.8.x/doc/html/omake-pervasives.html
+4 -4 omake-branches/0.9.8.x/doc/html/omake-references.html
+48 -48 omake-branches/0.9.8.x/doc/html/omake-rules.html
+18 -18 omake-branches/0.9.8.x/doc/html/omake-shell.html
+141 -141 omake-branches/0.9.8.x/doc/html/omake-system.html
+11 -10 omake-branches/0.9.8.x/doc/html/omake-target-index.html
+3 -3 omake-branches/0.9.8.x/doc/html/omake-toc.html
+7 -7 omake-branches/0.9.8.x/doc/html/osh.html
+83 -0 omake-branches/0.9.8.x/doc/src/omake-language.tex
Added omake-branches/0.9.8.x/test/memo/Test5/
Added omake-branches/0.9.8.x/test/memo/Test5/fib.om
Copied omake-branches/0.9.8.x/test/memo/Test5/run.osh (from rev 11271, omake-branches/0.9.8.x/test/memo/Test4/run.osh)
+1 -1 omake-branches/0.9.8.x/test/memo/Test5/run.osh (from rev 11271, omake-branches/0.9.8.x/test/memo/Test4/run.osh)
Added omake-branches/0.9.8.x/test/memo/Test5/stdout.expected

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-15 14:30:00 -0700 (Sun, 15 Jul 2007)
Revision: 11277
Log message:

      Small optimization in Omake_cache.  For the index, use (NodeSet.t IntTable.t)
     instead of (Node.t IntMTable.t), since the former is less likely to leak
     space.

Changes  Path
+25 -10 omake-branches/0.9.8.x/src/ir/omake_cache.ml

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-16 11:50:03 -0700 (Mon, 16 Jul 2007)
Revision: 11278
Log message:

      inotify-test.c doesn't exist anymore?

Changes  Path
+1 -3 omake-branches/0.9.8.4/src/Makefile
+1 -3 omake-branches/0.9.8.4/src/Makefile.nt
+1 -1 omake-branches/0.9.8.4/src/clib/OMakefile

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-16 13:44:08 -0700 (Mon, 16 Jul 2007)
Revision: 11281
Log message:

      Made the locking of the .omc files even more finegrained than before.
     (I was having a locking problem, which turned out to be caused by
     misinteractions of the NLM with the firewall, but this change is probably a
     good idea anyway).

Changes  Path
+51 -47 omake-branches/0.9.8.x/src/env/omake_env.ml
+11 -20 omake-branches/0.9.8.x/src/env/omake_env.mli
+18 -30 omake-branches/0.9.8.x/src/eval/omake_eval.ml
+1 -1 omake-branches/0.9.8.x/src/ir/omake_state.ml

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-16 16:14:35 -0700 (Mon, 16 Jul 2007)
Revision: 11283
Log message:

      Merge 11106 -> 11281.  Untested.

Changes  Path
+2289 -0 omake-jumbo-branches/all-features/doc/html/omake-all-index.html
+397 -0 omake-jumbo-branches/all-features/doc/html/omake-autoconf.html
+878 -0 omake-jumbo-branches/all-features/doc/html/omake-base.html
+1461 -0 omake-jumbo-branches/all-features/doc/html/omake-build.html
+2310 -0 omake-jumbo-branches/all-features/doc/html/omake-contents.html
+153 -0 omake-jumbo-branches/all-features/doc/html/omake-detail.html
+12635 -273 omake-jumbo-branches/all-features/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/all-features/doc/html/omake-fun-index.html
+473 -0 omake-jumbo-branches/all-features/doc/html/omake-grammar.html
+168 -0 omake-jumbo-branches/all-features/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/all-features/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/all-features/doc/html/omake-language.html
+424 -0 omake-jumbo-branches/all-features/doc/html/omake-options.html
+304 -1 omake-jumbo-branches/all-features/doc/html/omake-pervasives.html
+76 -0 omake-jumbo-branches/all-features/doc/html/omake-references.html
+392 -0 omake-jumbo-branches/all-features/doc/html/omake-rules.html
+261 -0 omake-jumbo-branches/all-features/doc/html/omake-shell.html
+1972 -3 omake-jumbo-branches/all-features/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/all-features/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/all-features/doc/html/omake-toc.html
+97 -0 omake-jumbo-branches/all-features/doc/html/osh.html
+480 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/all-features/doc/info/omake-doc.info-1
+382 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-10
+258 -10 omake-jumbo-branches/all-features/doc/info/omake-doc.info-2
+324 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-3
+383 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-4
+368 -9 omake-jumbo-branches/all-features/doc/info/omake-doc.info-5
+389 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-6
+363 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-7
+299 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-8
+645 -1 omake-jumbo-branches/all-features/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/all-features/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/all-features/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/all-features/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/all-features/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/all-features/doc/src/omake-rules.tex
+116 -21 omake-jumbo-branches/all-features/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/all-features/exclude
+31 -11 omake-jumbo-branches/all-features/lib/Pervasives.om
+14 -17 omake-jumbo-branches/all-features/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/all-features/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/all-features/src/Makefile
+1 -3 omake-jumbo-branches/all-features/src/Makefile.nt
+40 -48 omake-jumbo-branches/all-features/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/all-features/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/all-features/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/all-features/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/all-features/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/all-features/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/all-features/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/all-features/src/clib/OMakefile
+49 -23 omake-jumbo-branches/all-features/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/all-features/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/all-features/src/env/omake_command_digest.mli
+34 -23 omake-jumbo-branches/all-features/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/all-features/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/all-features/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/all-features/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/all-features/src/env/omake_ir_semant.ml
+20 -15 omake-jumbo-branches/all-features/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/all-features/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/all-features/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/all-features/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/all-features/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/all-features/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/all-features/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/all-features/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/all-features/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/all-features/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/all-features/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/all-features/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/all-features/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/all-features/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/all-features/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/all-features/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/all-features/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/all-features/test/OMakefile
+1 -0 omake-jumbo-branches/all-features/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/all-features/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/all-features/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/all-features/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/all-features/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/all-features/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/all-features/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/all-features/test/vmount/Test1/OMakefile
+1732 -0 omake-jumbo-branches/auto/doc/html/omake-all-index.html
+297 -0 omake-jumbo-branches/auto/doc/html/omake-autoconf.html
+658 -0 omake-jumbo-branches/auto/doc/html/omake-base.html
+1094 -0 omake-jumbo-branches/auto/doc/html/omake-build.html
+1737 -0 omake-jumbo-branches/auto/doc/html/omake-contents.html
+113 -0 omake-jumbo-branches/auto/doc/html/omake-detail.html
+9604 -273 omake-jumbo-branches/auto/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/auto/doc/html/omake-fun-index.html
+354 -0 omake-jumbo-branches/auto/doc/html/omake-grammar.html
+124 -0 omake-jumbo-branches/auto/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/auto/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/auto/doc/html/omake-language.html
+316 -0 omake-jumbo-branches/auto/doc/html/omake-options.html
+229 -1 omake-jumbo-branches/auto/doc/html/omake-pervasives.html
+56 -0 omake-jumbo-branches/auto/doc/html/omake-references.html
+291 -0 omake-jumbo-branches/auto/doc/html/omake-rules.html
+193 -0 omake-jumbo-branches/auto/doc/html/omake-shell.html
+1478 -3 omake-jumbo-branches/auto/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/auto/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/auto/doc/html/omake-toc.html
+72 -0 omake-jumbo-branches/auto/doc/html/osh.html
+480 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/auto/doc/info/omake-doc.info-1
+382 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-10
+258 -10 omake-jumbo-branches/auto/doc/info/omake-doc.info-2
+324 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-3
+383 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-4
+368 -9 omake-jumbo-branches/auto/doc/info/omake-doc.info-5
+389 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-6
+363 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-7
+299 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-8
+645 -1 omake-jumbo-branches/auto/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/auto/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/auto/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/auto/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/auto/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/auto/doc/src/omake-rules.tex
+116 -21 omake-jumbo-branches/auto/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/auto/exclude
+31 -11 omake-jumbo-branches/auto/lib/Pervasives.om
+14 -17 omake-jumbo-branches/auto/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/auto/lib/configure/Configure.om
+2 -4 omake-jumbo-branches/auto/src/Makefile
+2 -4 omake-jumbo-branches/auto/src/Makefile.nt
+40 -48 omake-jumbo-branches/auto/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/auto/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/auto/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/auto/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/auto/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/auto/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/auto/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/auto/src/clib/OMakefile
+49 -23 omake-jumbo-branches/auto/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/auto/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/auto/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/auto/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/auto/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/auto/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/auto/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/auto/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/auto/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/auto/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/auto/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/auto/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/auto/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/auto/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/auto/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/auto/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/auto/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/auto/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/auto/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/auto/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/auto/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/auto/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/auto/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/auto/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/auto/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/auto/test/OMakefile
+1 -0 omake-jumbo-branches/auto/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/auto/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/auto/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/auto/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/auto/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/auto/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/auto/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/auto/test/vmount/Test1/OMakefile
+1732 -0 omake-jumbo-branches/const/doc/html/omake-all-index.html
+297 -0 omake-jumbo-branches/const/doc/html/omake-autoconf.html
+658 -0 omake-jumbo-branches/const/doc/html/omake-base.html
+1094 -0 omake-jumbo-branches/const/doc/html/omake-build.html
+1737 -0 omake-jumbo-branches/const/doc/html/omake-contents.html
+113 -0 omake-jumbo-branches/const/doc/html/omake-detail.html
+9604 -273 omake-jumbo-branches/const/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/const/doc/html/omake-fun-index.html
+354 -0 omake-jumbo-branches/const/doc/html/omake-grammar.html
+124 -0 omake-jumbo-branches/const/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/const/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/const/doc/html/omake-language.html
+316 -0 omake-jumbo-branches/const/doc/html/omake-options.html
+229 -1 omake-jumbo-branches/const/doc/html/omake-pervasives.html
+56 -0 omake-jumbo-branches/const/doc/html/omake-references.html
+291 -0 omake-jumbo-branches/const/doc/html/omake-rules.html
+193 -0 omake-jumbo-branches/const/doc/html/omake-shell.html
+1478 -3 omake-jumbo-branches/const/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/const/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/const/doc/html/omake-toc.html
+72 -0 omake-jumbo-branches/const/doc/html/osh.html
+480 -0 omake-jumbo-branches/const/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/const/doc/info/omake-doc.info-1
+382 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-10
+258 -10 omake-jumbo-branches/const/doc/info/omake-doc.info-2
+324 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-3
+383 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-4
+368 -9 omake-jumbo-branches/const/doc/info/omake-doc.info-5
+389 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-6
+363 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-7
+299 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-8
+645 -1 omake-jumbo-branches/const/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/const/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/const/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/const/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/const/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/const/doc/src/omake-rules.tex
+116 -21 omake-jumbo-branches/const/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/const/exclude
+31 -11 omake-jumbo-branches/const/lib/Pervasives.om
+14 -17 omake-jumbo-branches/const/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/const/lib/configure/Configure.om
+2 -4 omake-jumbo-branches/const/src/Makefile
+2 -4 omake-jumbo-branches/const/src/Makefile.nt
+40 -48 omake-jumbo-branches/const/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/const/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/const/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/const/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/const/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/const/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/const/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/const/src/clib/OMakefile
+49 -23 omake-jumbo-branches/const/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/const/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/const/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/const/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/const/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/const/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/const/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/const/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/const/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/const/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/const/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/const/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/const/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/const/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/const/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/const/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/const/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/const/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/const/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/const/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/const/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/const/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/const/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/const/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/const/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/const/test/OMakefile
+1 -0 omake-jumbo-branches/const/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/const/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/const/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/const/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/const/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/const/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/const/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/const/test/vmount/Test1/OMakefile
+1386 -0 omake-jumbo-branches/dll/doc/html/omake-all-index.html
+294 -0 omake-jumbo-branches/dll/doc/html/omake-autoconf.html
+510 -0 omake-jumbo-branches/dll/doc/html/omake-base.html
+1087 -0 omake-jumbo-branches/dll/doc/html/omake-build.html
+1594 -0 omake-jumbo-branches/dll/doc/html/omake-contents.html
+73 -0 omake-jumbo-branches/dll/doc/html/omake-detail.html
+9054 -26 omake-jumbo-branches/dll/doc/html/omake-doc.html
+379 -8 omake-jumbo-branches/dll/doc/html/omake-fun-index.html
+351 -0 omake-jumbo-branches/dll/doc/html/omake-grammar.html
+80 -0 omake-jumbo-branches/dll/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/dll/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/dll/doc/html/omake-language.html
+308 -0 omake-jumbo-branches/dll/doc/html/omake-options.html
+228 -1 omake-jumbo-branches/dll/doc/html/omake-pervasives.html
+52 -0 omake-jumbo-branches/dll/doc/html/omake-references.html
+190 -0 omake-jumbo-branches/dll/doc/html/omake-rules.html
+182 -0 omake-jumbo-branches/dll/doc/html/omake-shell.html
+1467 -3 omake-jumbo-branches/dll/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/dll/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/dll/doc/html/omake-toc.html
+69 -0 omake-jumbo-branches/dll/doc/html/osh.html
+480 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/dll/doc/info/omake-doc.info-1
+382 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-10
+258 -10 omake-jumbo-branches/dll/doc/info/omake-doc.info-2
+324 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-3
+383 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-4
+368 -9 omake-jumbo-branches/dll/doc/info/omake-doc.info-5
+389 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-6
+363 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-7
+299 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-8
+645 -1 omake-jumbo-branches/dll/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/dll/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/dll/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/dll/doc/src/omake-rules.tex
+116 -21 omake-jumbo-branches/dll/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/dll/exclude
+31 -11 omake-jumbo-branches/dll/lib/Pervasives.om
+14 -17 omake-jumbo-branches/dll/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/dll/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/dll/src/Makefile
+1 -3 omake-jumbo-branches/dll/src/Makefile.nt
+40 -48 omake-jumbo-branches/dll/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/dll/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/dll/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/dll/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/dll/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/dll/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/dll/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/dll/src/clib/OMakefile
+49 -23 omake-jumbo-branches/dll/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/dll/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/dll/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/dll/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/dll/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/dll/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/dll/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/dll/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/dll/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/dll/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/dll/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/dll/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/dll/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/dll/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/dll/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/dll/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/dll/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/dll/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/dll/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/dll/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/dll/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/dll/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/dll/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/dll/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/dll/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/dll/test/OMakefile
+1 -0 omake-jumbo-branches/dll/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/dll/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/dll/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/dll/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/dll/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/dll/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/dll/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/dll/test/vmount/Test1/OMakefile
+2977 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-all-index.html
+591 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-autoconf.html
+986 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-base.html
+2189 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-build.html
+3059 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-contents.html
+153 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-detail.html
+18090 -22 omake-jumbo-branches/dll-fuse/doc/html/omake-doc.html
+624 -5 omake-jumbo-branches/dll-fuse/doc/html/omake-fun-index.html
+827 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-grammar.html
+168 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/dll-fuse/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-language.html
+732 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-options.html
+452 -1 omake-jumbo-branches/dll-fuse/doc/html/omake-pervasives.html
+142 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-references.html
+392 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-rules.html
+375 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-shell.html
+2936 -3 omake-jumbo-branches/dll-fuse/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/dll-fuse/doc/html/omake-target-index.html
+8 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-toc.html
+166 -0 omake-jumbo-branches/dll-fuse/doc/html/osh.html
+967 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-1
+553 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-10
+313 -6 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-2
+369 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-3
+442 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-4
+420 -5 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-5
+449 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-6
+475 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-7
+317 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-8
+1865 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll-fuse/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll-fuse/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/dll-fuse/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/dll-fuse/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/dll-fuse/doc/src/omake-rules.tex
+124 -19 omake-jumbo-branches/dll-fuse/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/dll-fuse/exclude
+31 -12 omake-jumbo-branches/dll-fuse/lib/Pervasives.om
+14 -17 omake-jumbo-branches/dll-fuse/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/dll-fuse/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/dll-fuse/src/Makefile
+1 -3 omake-jumbo-branches/dll-fuse/src/Makefile.nt
+40 -48 omake-jumbo-branches/dll-fuse/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/dll-fuse/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/dll-fuse/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/dll-fuse/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/dll-fuse/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/dll-fuse/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/dll-fuse/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/dll-fuse/src/clib/OMakefile
+49 -23 omake-jumbo-branches/dll-fuse/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/dll-fuse/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/dll-fuse/src/env/omake_command_digest.mli
+34 -23 omake-jumbo-branches/dll-fuse/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/dll-fuse/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/dll-fuse/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/dll-fuse/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/dll-fuse/src/env/omake_ir_semant.ml
+20 -15 omake-jumbo-branches/dll-fuse/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/dll-fuse/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/dll-fuse/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/dll-fuse/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/dll-fuse/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/dll-fuse/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/dll-fuse/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/dll-fuse/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/dll-fuse/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/dll-fuse/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/dll-fuse/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/dll-fuse/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/dll-fuse/src/ir/omake_value_type.ml
+22 -23 omake-jumbo-branches/dll-fuse/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/dll-fuse/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/dll-fuse/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/dll-fuse/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/dll-fuse/test/OMakefile
+1 -0 omake-jumbo-branches/dll-fuse/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/dll-fuse/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/dll-fuse/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/dll-fuse/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/dll-fuse/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/dll-fuse/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/dll-fuse/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/dll-fuse/test/vmount/Test1/OMakefile
+2970 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-all-index.html
+591 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-autoconf.html
+1175 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-base.html
+2189 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-build.html
+3527 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-contents.html
+153 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-detail.html
+18840 -17 omake-jumbo-branches/dll-odbc/doc/html/omake-doc.html
+774 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-fun-index.html
+784 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-grammar.html
+168 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/dll-odbc/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-language.html
+725 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-options.html
+452 -1 omake-jumbo-branches/dll-odbc/doc/html/omake-pervasives.html
+142 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-references.html
+392 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-rules.html
+375 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-shell.html
+2940 -3 omake-jumbo-branches/dll-odbc/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/dll-odbc/doc/html/omake-target-index.html
+8 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-toc.html
+160 -0 omake-jumbo-branches/dll-odbc/doc/html/osh.html
+967 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-1
+553 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-10
+313 -6 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-2
+369 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-3
+442 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-4
+420 -5 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-5
+449 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-6
+475 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-7
+317 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-8
+1865 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll-odbc/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll-odbc/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/dll-odbc/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/dll-odbc/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/dll-odbc/doc/src/omake-rules.tex
+124 -19 omake-jumbo-branches/dll-odbc/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/dll-odbc/exclude
+31 -12 omake-jumbo-branches/dll-odbc/lib/Pervasives.om
+14 -17 omake-jumbo-branches/dll-odbc/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/dll-odbc/lib/configure/Configure.om
+2 -4 omake-jumbo-branches/dll-odbc/src/Makefile
+2 -4 omake-jumbo-branches/dll-odbc/src/Makefile.nt
+40 -48 omake-jumbo-branches/dll-odbc/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/dll-odbc/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/dll-odbc/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/dll-odbc/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/dll-odbc/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/dll-odbc/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/dll-odbc/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/dll-odbc/src/clib/OMakefile
+49 -23 omake-jumbo-branches/dll-odbc/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/dll-odbc/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/dll-odbc/src/env/omake_command_digest.mli
+34 -23 omake-jumbo-branches/dll-odbc/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/dll-odbc/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/dll-odbc/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/dll-odbc/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/dll-odbc/src/env/omake_ir_semant.ml
+20 -15 omake-jumbo-branches/dll-odbc/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/dll-odbc/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/dll-odbc/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/dll-odbc/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/dll-odbc/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/dll-odbc/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/dll-odbc/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/dll-odbc/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/dll-odbc/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/dll-odbc/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/dll-odbc/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/dll-odbc/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/dll-odbc/src/ir/omake_value_type.ml
+22 -23 omake-jumbo-branches/dll-odbc/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/dll-odbc/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/dll-odbc/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/dll-odbc/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/dll-odbc/test/OMakefile
+1 -0 omake-jumbo-branches/dll-odbc/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/dll-odbc/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/dll-odbc/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/dll-odbc/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/dll-odbc/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/dll-odbc/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/dll-odbc/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/dll-odbc/test/vmount/Test1/OMakefile
+2663 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-all-index.html
+494 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-autoconf.html
+986 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-base.html
+1821 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-build.html
+2958 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-contents.html
+153 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-detail.html
+15790 -23 omake-jumbo-branches/dll-syntax/doc/html/omake-doc.html
+385 -6 omake-jumbo-branches/dll-syntax/doc/html/omake-fun-index.html
+711 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-grammar.html
+168 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/dll-syntax/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-language.html
+632 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-options.html
+378 -1 omake-jumbo-branches/dll-syntax/doc/html/omake-pervasives.html
+128 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-references.html
+392 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-rules.html
+318 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-shell.html
+2455 -3 omake-jumbo-branches/dll-syntax/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/dll-syntax/doc/html/omake-target-index.html
+8 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-toc.html
+144 -0 omake-jumbo-branches/dll-syntax/doc/html/osh.html
+967 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-1
+553 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-10
+313 -6 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-2
+369 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-3
+442 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-4
+420 -5 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-5
+449 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-6
+475 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-7
+317 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-8
+1865 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll-syntax/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll-syntax/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/dll-syntax/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/dll-syntax/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/dll-syntax/doc/src/omake-rules.tex
+124 -19 omake-jumbo-branches/dll-syntax/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/dll-syntax/exclude
+31 -12 omake-jumbo-branches/dll-syntax/lib/Pervasives.om
+14 -17 omake-jumbo-branches/dll-syntax/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/dll-syntax/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/dll-syntax/src/Makefile
+1 -3 omake-jumbo-branches/dll-syntax/src/Makefile.nt
+40 -48 omake-jumbo-branches/dll-syntax/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/dll-syntax/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/dll-syntax/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/dll-syntax/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/dll-syntax/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/dll-syntax/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/dll-syntax/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/dll-syntax/src/clib/OMakefile
+49 -23 omake-jumbo-branches/dll-syntax/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/dll-syntax/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/dll-syntax/src/env/omake_command_digest.mli
+34 -23 omake-jumbo-branches/dll-syntax/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/dll-syntax/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/dll-syntax/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/dll-syntax/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/dll-syntax/src/env/omake_ir_semant.ml
+20 -15 omake-jumbo-branches/dll-syntax/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/dll-syntax/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/dll-syntax/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/dll-syntax/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/dll-syntax/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/dll-syntax/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/dll-syntax/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/dll-syntax/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/dll-syntax/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/dll-syntax/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/dll-syntax/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/dll-syntax/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/dll-syntax/src/ir/omake_value_type.ml
+22 -23 omake-jumbo-branches/dll-syntax/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/dll-syntax/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/dll-syntax/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/dll-syntax/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/dll-syntax/test/OMakefile
+1 -0 omake-jumbo-branches/dll-syntax/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/dll-syntax/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/dll-syntax/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/dll-syntax/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/dll-syntax/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/dll-syntax/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/dll-syntax/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/dll-syntax/test/vmount/Test1/OMakefile
+2663 -0 omake-jumbo-branches/dll2/doc/html/omake-all-index.html
+494 -0 omake-jumbo-branches/dll2/doc/html/omake-autoconf.html
+986 -0 omake-jumbo-branches/dll2/doc/html/omake-base.html
+1821 -0 omake-jumbo-branches/dll2/doc/html/omake-build.html
+2951 -0 omake-jumbo-branches/dll2/doc/html/omake-contents.html
+153 -0 omake-jumbo-branches/dll2/doc/html/omake-detail.html
+15762 -23 omake-jumbo-branches/dll2/doc/html/omake-doc.html
+385 -6 omake-jumbo-branches/dll2/doc/html/omake-fun-index.html
+708 -0 omake-jumbo-branches/dll2/doc/html/omake-grammar.html
+168 -0 omake-jumbo-branches/dll2/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/dll2/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/dll2/doc/html/omake-language.html
+632 -0 omake-jumbo-branches/dll2/doc/html/omake-options.html
+378 -1 omake-jumbo-branches/dll2/doc/html/omake-pervasives.html
+108 -0 omake-jumbo-branches/dll2/doc/html/omake-references.html
+392 -0 omake-jumbo-branches/dll2/doc/html/omake-rules.html
+318 -0 omake-jumbo-branches/dll2/doc/html/omake-shell.html
+2455 -3 omake-jumbo-branches/dll2/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/dll2/doc/html/omake-target-index.html
+4 -0 omake-jumbo-branches/dll2/doc/html/omake-toc.html
+144 -0 omake-jumbo-branches/dll2/doc/html/osh.html
+967 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/dll2/doc/info/omake-doc.info-1
+553 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-10
+313 -6 omake-jumbo-branches/dll2/doc/info/omake-doc.info-2
+369 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-3
+442 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-4
+420 -5 omake-jumbo-branches/dll2/doc/info/omake-doc.info-5
+449 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-6
+475 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-7
+317 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-8
+1865 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll2/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll2/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/dll2/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/dll2/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/dll2/doc/src/omake-rules.tex
+124 -19 omake-jumbo-branches/dll2/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/dll2/exclude
+31 -12 omake-jumbo-branches/dll2/lib/Pervasives.om
+14 -17 omake-jumbo-branches/dll2/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/dll2/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/dll2/src/Makefile
+1 -3 omake-jumbo-branches/dll2/src/Makefile.nt
+40 -48 omake-jumbo-branches/dll2/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/dll2/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/dll2/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/dll2/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/dll2/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/dll2/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/dll2/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/dll2/src/clib/OMakefile
+49 -23 omake-jumbo-branches/dll2/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/dll2/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/dll2/src/env/omake_command_digest.mli
+34 -23 omake-jumbo-branches/dll2/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/dll2/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/dll2/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/dll2/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/dll2/src/env/omake_ir_semant.ml
+20 -15 omake-jumbo-branches/dll2/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/dll2/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/dll2/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/dll2/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/dll2/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/dll2/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/dll2/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/dll2/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/dll2/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/dll2/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/dll2/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/dll2/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/dll2/src/ir/omake_value_type.ml
+22 -23 omake-jumbo-branches/dll2/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/dll2/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/dll2/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/dll2/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/dll2/test/OMakefile
+1 -0 omake-jumbo-branches/dll2/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/dll2/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/dll2/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/dll2/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/dll2/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/dll2/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/dll2/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/dll2/test/vmount/Test1/OMakefile
+3736 -0 omake-jumbo-branches/everything/doc/html/omake-all-index.html
+688 -0 omake-jumbo-branches/everything/doc/html/omake-autoconf.html
+1196 -0 omake-jumbo-branches/everything/doc/html/omake-base.html
+2561 -0 omake-jumbo-branches/everything/doc/html/omake-build.html
+3887 -0 omake-jumbo-branches/everything/doc/html/omake-contents.html
+187 -0 omake-jumbo-branches/everything/doc/html/omake-detail.html
+22009 -3 omake-jumbo-branches/everything/doc/html/omake-doc.html
+998 -0 omake-jumbo-branches/everything/doc/html/omake-fun-index.html
+947 -0 omake-jumbo-branches/everything/doc/html/omake-grammar.html
+205 -0 omake-jumbo-branches/everything/doc/html/omake-language-examples.html
+53 -0 omake-jumbo-branches/everything/doc/html/omake-language-naming.html
+79 -0 omake-jumbo-branches/everything/doc/html/omake-language.html
+840 -0 omake-jumbo-branches/everything/doc/html/omake-options.html
+526 -1 omake-jumbo-branches/everything/doc/html/omake-pervasives.html
+160 -0 omake-jumbo-branches/everything/doc/html/omake-references.html
+480 -0 omake-jumbo-branches/everything/doc/html/omake-rules.html
+432 -0 omake-jumbo-branches/everything/doc/html/omake-shell.html
+3416 -0 omake-jumbo-branches/everything/doc/html/omake-system.html
+15 -0 omake-jumbo-branches/everything/doc/html/omake-target-index.html
+12 -0 omake-jumbo-branches/everything/doc/html/omake-toc.html
+191 -0 omake-jumbo-branches/everything/doc/html/osh.html
+1553 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info
+9 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-1
+969 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-10
+430 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-2
+411 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-3
+544 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-4
+547 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-5
+574 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-6
+510 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-7
+359 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-8
+1890 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/everything/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/everything/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/everything/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/everything/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/everything/doc/src/omake-rules.tex
+1197 -5 omake-jumbo-branches/everything/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/everything/exclude
+31 -12 omake-jumbo-branches/everything/lib/Pervasives.om
+14 -17 omake-jumbo-branches/everything/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/everything/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/everything/src/Makefile
+1 -3 omake-jumbo-branches/everything/src/Makefile.nt
+40 -48 omake-jumbo-branches/everything/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/everything/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/everything/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/everything/src/build/omake_rule.mli
+62 -27 omake-jumbo-branches/everything/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/everything/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/everything/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/everything/src/clib/OMakefile
+49 -23 omake-jumbo-branches/everything/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/everything/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/everything/src/env/omake_command_digest.mli
+34 -23 omake-jumbo-branches/everything/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/everything/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/everything/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/everything/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/everything/src/env/omake_ir_semant.ml
+20 -15 omake-jumbo-branches/everything/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/everything/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/everything/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/everything/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/everything/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/everything/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/everything/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/everything/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/everything/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/everything/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/everything/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/everything/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/everything/src/ir/omake_value_type.ml
+22 -23 omake-jumbo-branches/everything/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/everything/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/everything/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/everything/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/everything/test/OMakefile
+1 -0 omake-jumbo-branches/everything/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/everything/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/everything/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/everything/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/everything/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/everything/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/everything/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/everything/test/vmount/Test1/OMakefile
+1386 -0 omake-jumbo-branches/int/doc/html/omake-all-index.html
+294 -0 omake-jumbo-branches/int/doc/html/omake-autoconf.html
+510 -0 omake-jumbo-branches/int/doc/html/omake-base.html
+1087 -0 omake-jumbo-branches/int/doc/html/omake-build.html
+1594 -0 omake-jumbo-branches/int/doc/html/omake-contents.html
+73 -0 omake-jumbo-branches/int/doc/html/omake-detail.html
+9054 -26 omake-jumbo-branches/int/doc/html/omake-doc.html
+379 -8 omake-jumbo-branches/int/doc/html/omake-fun-index.html
+351 -0 omake-jumbo-branches/int/doc/html/omake-grammar.html
+80 -0 omake-jumbo-branches/int/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/int/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/int/doc/html/omake-language.html
+308 -0 omake-jumbo-branches/int/doc/html/omake-options.html
+228 -1 omake-jumbo-branches/int/doc/html/omake-pervasives.html
+52 -0 omake-jumbo-branches/int/doc/html/omake-references.html
+190 -0 omake-jumbo-branches/int/doc/html/omake-rules.html
+182 -0 omake-jumbo-branches/int/doc/html/omake-shell.html
+1467 -3 omake-jumbo-branches/int/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/int/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/int/doc/html/omake-toc.html
+69 -0 omake-jumbo-branches/int/doc/html/osh.html
+480 -0 omake-jumbo-branches/int/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/int/doc/info/omake-doc.info-1
+382 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-10
+258 -10 omake-jumbo-branches/int/doc/info/omake-doc.info-2
+324 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-3
+383 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-4
+368 -9 omake-jumbo-branches/int/doc/info/omake-doc.info-5
+389 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-6
+363 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-7
+299 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-8
+645 -1 omake-jumbo-branches/int/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/int/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/int/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/int/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/int/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/int/doc/src/omake-rules.tex
+116 -21 omake-jumbo-branches/int/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/int/exclude
+31 -11 omake-jumbo-branches/int/lib/Pervasives.om
+14 -17 omake-jumbo-branches/int/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/int/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/int/src/Makefile
+1 -3 omake-jumbo-branches/int/src/Makefile.nt
+40 -48 omake-jumbo-branches/int/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/int/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/int/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/int/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/int/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/int/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/int/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/int/src/clib/OMakefile
+49 -23 omake-jumbo-branches/int/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/int/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/int/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/int/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/int/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/int/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/int/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/int/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/int/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/int/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/int/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/int/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/int/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/int/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/int/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/int/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/int/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/int/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/int/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/int/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/int/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/int/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/int/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/int/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/int/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/int/test/OMakefile
+1 -0 omake-jumbo-branches/int/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/int/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/int/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/int/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/int/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/int/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/int/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/int/test/vmount/Test1/OMakefile
+623 -0 omake-jumbo-branches/keyword/doc/html/omake-all-index.html
+100 -0 omake-jumbo-branches/keyword/doc/html/omake-autoconf.html
+225 -0 omake-jumbo-branches/keyword/doc/html/omake-base.html
+367 -0 omake-jumbo-branches/keyword/doc/html/omake-build.html
+593 -0 omake-jumbo-branches/keyword/doc/html/omake-contents.html
+40 -0 omake-jumbo-branches/keyword/doc/html/omake-detail.html
+3507 -275 omake-jumbo-branches/keyword/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/keyword/doc/html/omake-fun-index.html
+119 -0 omake-jumbo-branches/keyword/doc/html/omake-grammar.html
+44 -0 omake-jumbo-branches/keyword/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/keyword/doc/html/omake-language-naming.html
+67 -1 omake-jumbo-branches/keyword/doc/html/omake-language.html
+108 -0 omake-jumbo-branches/keyword/doc/html/omake-options.html
+80 -1 omake-jumbo-branches/keyword/doc/html/omake-pervasives.html
+20 -0 omake-jumbo-branches/keyword/doc/html/omake-references.html
+102 -0 omake-jumbo-branches/keyword/doc/html/omake-rules.html
+68 -0 omake-jumbo-branches/keyword/doc/html/omake-shell.html
+501 -3 omake-jumbo-branches/keyword/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/keyword/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/keyword/doc/html/omake-toc.html
+25 -0 omake-jumbo-branches/keyword/doc/html/osh.html
+474 -471 omake-jumbo-branches/keyword/doc/info/omake-doc.info
+2 -2 omake-jumbo-branches/keyword/doc/info/omake-doc.info-1
+376 -1 omake-jumbo-branches/keyword/doc/info/omake-doc.info-10
+241 -219 omake-jumbo-branches/keyword/doc/info/omake-doc.info-2
+192 -197 omake-jumbo-branches/keyword/doc/info/omake-doc.info-3
+205 -203 omake-jumbo-branches/keyword/doc/info/omake-doc.info-4
+215 -232 omake-jumbo-branches/keyword/doc/info/omake-doc.info-5
+211 -234 omake-jumbo-branches/keyword/doc/info/omake-doc.info-6
+242 -142 omake-jumbo-branches/keyword/doc/info/omake-doc.info-7
+148 -476 omake-jumbo-branches/keyword/doc/info/omake-doc.info-8
+486 -376 omake-jumbo-branches/keyword/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/keyword/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/keyword/doc/ps/omake-doc.ps
+1 -1 omake-jumbo-branches/keyword/doc/src/omake-language-naming.tex
+84 -1 omake-jumbo-branches/keyword/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/keyword/doc/src/omake-rules.tex
+263 -43 omake-jumbo-branches/keyword/doc/txt/omake-doc.txt
+1 -0 omake-jumbo-branches/keyword/exclude
+41 -3 omake-jumbo-branches/keyword/lib/Pervasives.om
+9 -9 omake-jumbo-branches/keyword/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/keyword/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/keyword/src/Makefile
+1 -3 omake-jumbo-branches/keyword/src/Makefile.nt
+40 -48 omake-jumbo-branches/keyword/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/keyword/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/keyword/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/keyword/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/keyword/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/keyword/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/keyword/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/keyword/src/clib/OMakefile
+49 -23 omake-jumbo-branches/keyword/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/keyword/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/keyword/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/keyword/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/keyword/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/keyword/src/env/omake_exn_print.ml
+22 -18 omake-jumbo-branches/keyword/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/keyword/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/keyword/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/keyword/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/keyword/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/keyword/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/keyword/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/keyword/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/keyword/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/keyword/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/keyword/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/keyword/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/keyword/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/keyword/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/keyword/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/keyword/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/keyword/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/keyword/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/keyword/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/keyword/test/OMakefile
+1 -0 omake-jumbo-branches/keyword/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/keyword/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/keyword/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/keyword/test/awk/Test4/run.osh
+16 -1 omake-jumbo-branches/keyword/test/exn/Test3/output
+4 -2 omake-jumbo-branches/keyword/test/exn/Test3/run.osh
+1 -1 omake-jumbo-branches/keyword/test/keyword/result.log
+1 -0 omake-jumbo-branches/keyword/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/keyword/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/keyword/test/vmount/Test1/OMakefile
+2335 -0 omake-jumbo-branches/parse/doc/html/omake-all-index.html
+397 -0 omake-jumbo-branches/parse/doc/html/omake-autoconf.html
+878 -0 omake-jumbo-branches/parse/doc/html/omake-base.html
+1461 -0 omake-jumbo-branches/parse/doc/html/omake-build.html
+2407 -0 omake-jumbo-branches/parse/doc/html/omake-contents.html
+153 -0 omake-jumbo-branches/parse/doc/html/omake-detail.html
+12998 -273 omake-jumbo-branches/parse/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/parse/doc/html/omake-fun-index.html
+592 -0 omake-jumbo-branches/parse/doc/html/omake-grammar.html
+168 -0 omake-jumbo-branches/parse/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/parse/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/parse/doc/html/omake-language.html
+532 -0 omake-jumbo-branches/parse/doc/html/omake-options.html
+304 -1 omake-jumbo-branches/parse/doc/html/omake-pervasives.html
+94 -0 omake-jumbo-branches/parse/doc/html/omake-references.html
+392 -0 omake-jumbo-branches/parse/doc/html/omake-rules.html
+261 -0 omake-jumbo-branches/parse/doc/html/omake-shell.html
+1972 -3 omake-jumbo-branches/parse/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/parse/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/parse/doc/html/omake-toc.html
+122 -0 omake-jumbo-branches/parse/doc/html/osh.html
+967 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/parse/doc/info/omake-doc.info-1
+553 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-10
+313 -6 omake-jumbo-branches/parse/doc/info/omake-doc.info-2
+369 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-3
+442 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-4
+420 -5 omake-jumbo-branches/parse/doc/info/omake-doc.info-5
+449 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-6
+475 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-7
+317 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-8
+1865 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/parse/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/parse/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/parse/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/parse/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/parse/doc/src/omake-rules.tex
+124 -19 omake-jumbo-branches/parse/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/parse/exclude
+30 -11 omake-jumbo-branches/parse/lib/Pervasives.om
+14 -17 omake-jumbo-branches/parse/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/parse/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/parse/src/Makefile
+1 -3 omake-jumbo-branches/parse/src/Makefile.nt
+40 -48 omake-jumbo-branches/parse/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/parse/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/parse/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/parse/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/parse/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/parse/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/parse/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/parse/src/clib/OMakefile
+49 -23 omake-jumbo-branches/parse/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/parse/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/parse/src/env/omake_command_digest.mli
+34 -23 omake-jumbo-branches/parse/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/parse/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/parse/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/parse/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/parse/src/env/omake_ir_semant.ml
+20 -15 omake-jumbo-branches/parse/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/parse/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/parse/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/parse/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/parse/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/parse/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/parse/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/parse/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/parse/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/parse/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/parse/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/parse/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/parse/src/ir/omake_value_type.ml
+17 -4 omake-jumbo-branches/parse/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/parse/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/parse/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/parse/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/parse/test/OMakefile
+1 -0 omake-jumbo-branches/parse/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/parse/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/parse/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/parse/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/parse/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/parse/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/parse/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/parse/test/vmount/Test1/OMakefile
+623 -0 omake-jumbo-branches/syntax/doc/html/omake-all-index.html
+100 -0 omake-jumbo-branches/syntax/doc/html/omake-autoconf.html
+225 -0 omake-jumbo-branches/syntax/doc/html/omake-base.html
+367 -0 omake-jumbo-branches/syntax/doc/html/omake-build.html
+600 -0 omake-jumbo-branches/syntax/doc/html/omake-contents.html
+40 -0 omake-jumbo-branches/syntax/doc/html/omake-detail.html
+3534 -274 omake-jumbo-branches/syntax/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/syntax/doc/html/omake-fun-index.html
+122 -0 omake-jumbo-branches/syntax/doc/html/omake-grammar.html
+44 -0 omake-jumbo-branches/syntax/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/syntax/doc/html/omake-language-naming.html
+67 -1 omake-jumbo-branches/syntax/doc/html/omake-language.html
+108 -0 omake-jumbo-branches/syntax/doc/html/omake-options.html
+80 -1 omake-jumbo-branches/syntax/doc/html/omake-pervasives.html
+40 -0 omake-jumbo-branches/syntax/doc/html/omake-references.html
+102 -0 omake-jumbo-branches/syntax/doc/html/omake-rules.html
+68 -0 omake-jumbo-branches/syntax/doc/html/omake-shell.html
+501 -3 omake-jumbo-branches/syntax/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/syntax/doc/html/omake-target-index.html
+4 -0 omake-jumbo-branches/syntax/doc/html/omake-toc.html
+25 -0 omake-jumbo-branches/syntax/doc/html/osh.html
+474 -471 omake-jumbo-branches/syntax/doc/info/omake-doc.info
+2 -2 omake-jumbo-branches/syntax/doc/info/omake-doc.info-1
+376 -1 omake-jumbo-branches/syntax/doc/info/omake-doc.info-10
+241 -219 omake-jumbo-branches/syntax/doc/info/omake-doc.info-2
+192 -197 omake-jumbo-branches/syntax/doc/info/omake-doc.info-3
+205 -203 omake-jumbo-branches/syntax/doc/info/omake-doc.info-4
+215 -232 omake-jumbo-branches/syntax/doc/info/omake-doc.info-5
+211 -234 omake-jumbo-branches/syntax/doc/info/omake-doc.info-6
+242 -142 omake-jumbo-branches/syntax/doc/info/omake-doc.info-7
+148 -476 omake-jumbo-branches/syntax/doc/info/omake-doc.info-8
+486 -376 omake-jumbo-branches/syntax/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/syntax/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/syntax/doc/ps/omake-doc.ps
+1 -1 omake-jumbo-branches/syntax/doc/src/omake-language-naming.tex
+84 -1 omake-jumbo-branches/syntax/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/syntax/doc/src/omake-rules.tex
+263 -43 omake-jumbo-branches/syntax/doc/txt/omake-doc.txt
+1 -0 omake-jumbo-branches/syntax/exclude
+41 -3 omake-jumbo-branches/syntax/lib/Pervasives.om
+9 -9 omake-jumbo-branches/syntax/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/syntax/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/syntax/src/Makefile
+1 -3 omake-jumbo-branches/syntax/src/Makefile.nt
+40 -48 omake-jumbo-branches/syntax/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/syntax/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/syntax/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/syntax/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/syntax/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/syntax/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/syntax/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/syntax/src/clib/OMakefile
+49 -23 omake-jumbo-branches/syntax/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/syntax/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/syntax/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/syntax/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/syntax/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/syntax/src/env/omake_exn_print.ml
+22 -18 omake-jumbo-branches/syntax/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/syntax/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/syntax/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/syntax/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/syntax/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/syntax/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/syntax/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/syntax/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/syntax/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/syntax/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/syntax/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/syntax/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/syntax/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/syntax/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/syntax/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/syntax/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/syntax/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/syntax/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/syntax/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/syntax/test/OMakefile
+1 -0 omake-jumbo-branches/syntax/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/syntax/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/syntax/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/syntax/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/syntax/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/syntax/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/syntax/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/syntax/test/vmount/Test1/OMakefile
+623 -0 omake-jumbo-branches/var2/doc/html/omake-all-index.html
+100 -0 omake-jumbo-branches/var2/doc/html/omake-autoconf.html
+225 -0 omake-jumbo-branches/var2/doc/html/omake-base.html
+367 -0 omake-jumbo-branches/var2/doc/html/omake-build.html
+593 -0 omake-jumbo-branches/var2/doc/html/omake-contents.html
+40 -0 omake-jumbo-branches/var2/doc/html/omake-detail.html
+3507 -275 omake-jumbo-branches/var2/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/var2/doc/html/omake-fun-index.html
+119 -0 omake-jumbo-branches/var2/doc/html/omake-grammar.html
+44 -0 omake-jumbo-branches/var2/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/var2/doc/html/omake-language-naming.html
+67 -1 omake-jumbo-branches/var2/doc/html/omake-language.html
+108 -0 omake-jumbo-branches/var2/doc/html/omake-options.html
+80 -1 omake-jumbo-branches/var2/doc/html/omake-pervasives.html
+20 -0 omake-jumbo-branches/var2/doc/html/omake-references.html
+102 -0 omake-jumbo-branches/var2/doc/html/omake-rules.html
+68 -0 omake-jumbo-branches/var2/doc/html/omake-shell.html
+501 -3 omake-jumbo-branches/var2/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/var2/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/var2/doc/html/omake-toc.html
+25 -0 omake-jumbo-branches/var2/doc/html/osh.html
+474 -471 omake-jumbo-branches/var2/doc/info/omake-doc.info
+2 -2 omake-jumbo-branches/var2/doc/info/omake-doc.info-1
+376 -1 omake-jumbo-branches/var2/doc/info/omake-doc.info-10
+241 -219 omake-jumbo-branches/var2/doc/info/omake-doc.info-2
+192 -197 omake-jumbo-branches/var2/doc/info/omake-doc.info-3
+205 -203 omake-jumbo-branches/var2/doc/info/omake-doc.info-4
+215 -232 omake-jumbo-branches/var2/doc/info/omake-doc.info-5
+211 -234 omake-jumbo-branches/var2/doc/info/omake-doc.info-6
+242 -142 omake-jumbo-branches/var2/doc/info/omake-doc.info-7
+148 -476 omake-jumbo-branches/var2/doc/info/omake-doc.info-8
+486 -376 omake-jumbo-branches/var2/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/var2/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/var2/doc/ps/omake-doc.ps
+1 -1 omake-jumbo-branches/var2/doc/src/omake-language-naming.tex
+84 -1 omake-jumbo-branches/var2/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/var2/doc/src/omake-rules.tex
+263 -43 omake-jumbo-branches/var2/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/var2/exclude
+41 -3 omake-jumbo-branches/var2/lib/Pervasives.om
+9 -9 omake-jumbo-branches/var2/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/var2/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/var2/src/Makefile
+1 -3 omake-jumbo-branches/var2/src/Makefile.nt
+40 -48 omake-jumbo-branches/var2/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/var2/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/var2/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/var2/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/var2/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/var2/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/var2/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/var2/src/clib/OMakefile
+49 -23 omake-jumbo-branches/var2/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/var2/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/var2/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/var2/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/var2/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/var2/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/var2/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/var2/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/var2/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/var2/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/var2/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/var2/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/var2/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/var2/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/var2/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/var2/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/var2/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/var2/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/var2/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/var2/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/var2/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/var2/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/var2/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/var2/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/var2/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/var2/test/OMakefile
+1 -0 omake-jumbo-branches/var2/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/var2/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/var2/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/var2/test/awk/Test4/run.osh
+4 -2 omake-jumbo-branches/var2/test/exn/Test3/run.osh
+1 -0 omake-jumbo-branches/var2/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/var2/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/var2/test/vmount/Test1/OMakefile
+1175 -0 omake-jumbo-branches/var3/doc/html/omake-all-index.html
+197 -0 omake-jumbo-branches/var3/doc/html/omake-autoconf.html
+438 -0 omake-jumbo-branches/var3/doc/html/omake-base.html
+727 -0 omake-jumbo-branches/var3/doc/html/omake-build.html
+1164 -0 omake-jumbo-branches/var3/doc/html/omake-contents.html
+73 -0 omake-jumbo-branches/var3/doc/html/omake-detail.html
+6573 -273 omake-jumbo-branches/var3/doc/html/omake-doc.html
+257 -255 omake-jumbo-branches/var3/doc/html/omake-fun-index.html
+235 -0 omake-jumbo-branches/var3/doc/html/omake-grammar.html
+80 -0 omake-jumbo-branches/var3/doc/html/omake-language-examples.html
+15 -15 omake-jumbo-branches/var3/doc/html/omake-language-naming.html
+70 -0 omake-jumbo-branches/var3/doc/html/omake-language.html
+208 -0 omake-jumbo-branches/var3/doc/html/omake-options.html
+154 -1 omake-jumbo-branches/var3/doc/html/omake-pervasives.html
+36 -0 omake-jumbo-branches/var3/doc/html/omake-references.html
+190 -0 omake-jumbo-branches/var3/doc/html/omake-rules.html
+125 -0 omake-jumbo-branches/var3/doc/html/omake-shell.html
+984 -3 omake-jumbo-branches/var3/doc/html/omake-system.html
+11 -10 omake-jumbo-branches/var3/doc/html/omake-target-index.html
+1 -1 omake-jumbo-branches/var3/doc/html/omake-toc.html
+47 -0 omake-jumbo-branches/var3/doc/html/osh.html
+480 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info
+6 -1 omake-jumbo-branches/var3/doc/info/omake-doc.info-1
+382 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-10
+258 -10 omake-jumbo-branches/var3/doc/info/omake-doc.info-2
+324 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-3
+383 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-4
+368 -9 omake-jumbo-branches/var3/doc/info/omake-doc.info-5
+389 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-6
+363 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-7
+299 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-8
+645 -1 omake-jumbo-branches/var3/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/var3/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/var3/doc/ps/omake-doc.ps
+7 -0 omake-jumbo-branches/var3/doc/src/omake-language-naming.tex
+87 -0 omake-jumbo-branches/var3/doc/src/omake-language.tex
+1 -1 omake-jumbo-branches/var3/doc/src/omake-rules.tex
+116 -21 omake-jumbo-branches/var3/doc/txt/omake-doc.txt
+2 -0 omake-jumbo-branches/var3/exclude
+31 -11 omake-jumbo-branches/var3/lib/Pervasives.om
+14 -17 omake-jumbo-branches/var3/lib/build/svn_realclean.om
+5 -4 omake-jumbo-branches/var3/lib/configure/Configure.om
+1 -3 omake-jumbo-branches/var3/src/Makefile
+1 -3 omake-jumbo-branches/var3/src/Makefile.nt
+40 -48 omake-jumbo-branches/var3/src/build/omake_build.ml
+45 -58 omake-jumbo-branches/var3/src/build/omake_build_util.ml
+6 -4 omake-jumbo-branches/var3/src/build/omake_rule.ml
+2 -1 omake-jumbo-branches/var3/src/build/omake_rule.mli
+61 -26 omake-jumbo-branches/var3/src/builtin/omake_builtin_base.ml
+24 -7 omake-jumbo-branches/var3/src/builtin/omake_builtin_io.ml
+15 -15 omake-jumbo-branches/var3/src/builtin/omake_builtin_target.ml
+0 -1 omake-jumbo-branches/var3/src/clib/OMakefile
+49 -23 omake-jumbo-branches/var3/src/clib/omake_shell_sys.c
+12 -3 omake-jumbo-branches/var3/src/env/omake_command_digest.ml
+7 -8 omake-jumbo-branches/var3/src/env/omake_command_digest.mli
+34 -19 omake-jumbo-branches/var3/src/env/omake_env.ml
+4 -6 omake-jumbo-branches/var3/src/env/omake_env.mli
+2 -0 omake-jumbo-branches/var3/src/env/omake_exn_print.ml
+21 -13 omake-jumbo-branches/var3/src/env/omake_ir_ast.ml
+4 -0 omake-jumbo-branches/var3/src/env/omake_ir_semant.ml
+20 -14 omake-jumbo-branches/var3/src/eval/omake_eval.ml
+1 -1 omake-jumbo-branches/var3/src/eval/omake_value.ml
+20 -22 omake-jumbo-branches/var3/src/exec/omake_exec_local.ml
+3 -2 omake-jumbo-branches/var3/src/exec/omake_exec_print.ml
+6 -4 omake-jumbo-branches/var3/src/exec/omake_exec_remote.ml
+5 -4 omake-jumbo-branches/var3/src/exec/omake_exec_type.ml
+70 -44 omake-jumbo-branches/var3/src/ir/omake_cache.ml
+5 -8 omake-jumbo-branches/var3/src/ir/omake_cache.mli
+4 -5 omake-jumbo-branches/var3/src/ir/omake_ir.ml
+1 -0 omake-jumbo-branches/var3/src/ir/omake_ir_free_vars.ml
+7 -0 omake-jumbo-branches/var3/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/var3/src/ir/omake_symbol.ml
+1 -0 omake-jumbo-branches/var3/src/ir/omake_value_type.ml
+16 -3 omake-jumbo-branches/var3/src/main/omake_shell.ml
+191 -180 omake-jumbo-branches/var3/src/shell/omake_shell_job.ml
+19 -7 omake-jumbo-branches/var3/src/util/omake_util.ml
+7 -7 omake-jumbo-branches/var3/src/util/omake_util.mli
+16 -5 omake-jumbo-branches/var3/test/OMakefile
+1 -0 omake-jumbo-branches/var3/test/awk/Test1/run.osh
+1 -0 omake-jumbo-branches/var3/test/awk/Test2/run.osh
+1 -0 omake-jumbo-branches/var3/test/awk/Test3/run.osh
+1 -0 omake-jumbo-branches/var3/test/awk/Test4/run.osh
+1 -0 omake-jumbo-branches/var3/test/exn/Test3/output
+4 -2 omake-jumbo-branches/var3/test/exn/Test3/run.osh
+1 -1 omake-jumbo-branches/var3/test/keyword/result.log
+1 -0 omake-jumbo-branches/var3/test/object/Test1/run.osh
+1 -0 omake-jumbo-branches/var3/test/simple/Test4/run.osh
+1 -1 omake-jumbo-branches/var3/test/vmount/Test1/OMakefile

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-17 15:01:15 -0700 (Tue, 17 Jul 2007)
Revision: 11305
Log message:

      - [Bug 683] Added the FILENAME and FNR variables to awk.
     - Added a channel-name and Channel.name functions.

Changes  Path
+7 -0 omake-branches/0.9.8.x/lib/Pervasives.om
+21 -0 omake-branches/0.9.8.x/src/builtin/omake_builtin_io.ml
+5 -3 omake-branches/0.9.8.x/src/builtin/omake_builtin_io_fun.ml
+7 -7 omake-branches/0.9.8.x/src/ir/omake_symbol.ml
+7 -7 omake-branches/0.9.8.x/src/ir/omake_var.ml
+7 -7 omake-branches/0.9.8.x/src/ir/omake_var.mli

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-17 15:21:26 -0700 (Tue, 17 Jul 2007)
Revision: 11307
Log message:

      Added the tests, without .svnignore for now.

Changes  Path
Added omake-jumbo-branches/all-features/test/diff.om
Added omake-jumbo-branches/all-features/test/exn/Test4
Added omake-jumbo-branches/all-features/test/exn/Test5
Added omake-jumbo-branches/all-features/test/memo/
Added omake-jumbo-branches/all-features/test/memo/Test1/
Added omake-jumbo-branches/all-features/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/all-features/test/memo/Test1/run.osh
Added omake-jumbo-branches/all-features/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/all-features/test/memo/Test2/
Added omake-jumbo-branches/all-features/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/all-features/test/memo/Test2/run.osh
Added omake-jumbo-branches/all-features/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/all-features/test/memo/Test3/
Added omake-jumbo-branches/all-features/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/all-features/test/memo/Test3/run.osh
Added omake-jumbo-branches/all-features/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/all-features/test/memo/Test4/
Added omake-jumbo-branches/all-features/test/memo/Test4/memo.om
Added omake-jumbo-branches/all-features/test/memo/Test4/run.osh
Added omake-jumbo-branches/all-features/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/all-features/test/memo/Test5/
Added omake-jumbo-branches/all-features/test/memo/Test5/fib.om
Added omake-jumbo-branches/all-features/test/memo/Test5/run.osh
Added omake-jumbo-branches/all-features/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/all-features/test/object/Test2
Added omake-jumbo-branches/all-features/test/object/Test3
Added omake-jumbo-branches/all-features/test/object/Test4
Added omake-jumbo-branches/all-features/test/object/Test5
Added omake-jumbo-branches/all-features/test/shell/
Added omake-jumbo-branches/all-features/test/shell/Test1/
Added omake-jumbo-branches/all-features/test/shell/Test1/run.osh
Added omake-jumbo-branches/all-features/test/shell/Test1/shell.om
Added omake-jumbo-branches/all-features/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/all-features/test/shell/Test2/
Added omake-jumbo-branches/all-features/test/shell/Test2/OMakefile
Added omake-jumbo-branches/all-features/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/all-features/test/shell/Test2/run.osh
Added omake-jumbo-branches/all-features/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/all-features/test/shell/Test3/
Added omake-jumbo-branches/all-features/test/shell/Test3/run.osh
Added omake-jumbo-branches/all-features/test/shell/Test4/
Added omake-jumbo-branches/all-features/test/shell/Test4/run.osh
Added omake-jumbo-branches/all-features/test/simple/Test5
Added omake-jumbo-branches/all-features/test/simple/Test6
Added omake-jumbo-branches/all-features/test/simple/Test7
Added omake-jumbo-branches/all-features/test/static/
Added omake-jumbo-branches/all-features/test/static/Test1/
Added omake-jumbo-branches/all-features/test/static/Test1/OMakeroot
Added omake-jumbo-branches/all-features/test/static/Test1/run.osh
Added omake-jumbo-branches/all-features/test/static/Test1/stdout.expected
Added omake-jumbo-branches/all-features/test/static/Test2/
Added omake-jumbo-branches/all-features/test/static/Test2/OMakeroot
Added omake-jumbo-branches/all-features/test/static/Test2/run.osh
Added omake-jumbo-branches/all-features/test/static/Test2/stdout.expected
Added omake-jumbo-branches/all-features/test/static/Test3/
Added omake-jumbo-branches/all-features/test/static/Test3/OMakeroot
Added omake-jumbo-branches/all-features/test/static/Test3/run.osh
Added omake-jumbo-branches/all-features/test/static/Test3/stdout.expected
Added omake-jumbo-branches/auto/test/diff.om
Added omake-jumbo-branches/auto/test/exn/Test4
Added omake-jumbo-branches/auto/test/exn/Test5
Added omake-jumbo-branches/auto/test/memo/
Added omake-jumbo-branches/auto/test/memo/Test1/
Added omake-jumbo-branches/auto/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/auto/test/memo/Test1/run.osh
Added omake-jumbo-branches/auto/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/auto/test/memo/Test2/
Added omake-jumbo-branches/auto/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/auto/test/memo/Test2/run.osh
Added omake-jumbo-branches/auto/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/auto/test/memo/Test3/
Added omake-jumbo-branches/auto/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/auto/test/memo/Test3/run.osh
Added omake-jumbo-branches/auto/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/auto/test/memo/Test4/
Added omake-jumbo-branches/auto/test/memo/Test4/memo.om
Added omake-jumbo-branches/auto/test/memo/Test4/run.osh
Added omake-jumbo-branches/auto/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/auto/test/memo/Test5/
Added omake-jumbo-branches/auto/test/memo/Test5/fib.om
Added omake-jumbo-branches/auto/test/memo/Test5/run.osh
Added omake-jumbo-branches/auto/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/auto/test/object/Test2
Added omake-jumbo-branches/auto/test/object/Test3
Added omake-jumbo-branches/auto/test/object/Test4
Added omake-jumbo-branches/auto/test/object/Test5
Added omake-jumbo-branches/auto/test/shell/
Added omake-jumbo-branches/auto/test/shell/Test1/
Added omake-jumbo-branches/auto/test/shell/Test1/run.osh
Added omake-jumbo-branches/auto/test/shell/Test1/shell.om
Added omake-jumbo-branches/auto/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/auto/test/shell/Test2/
Added omake-jumbo-branches/auto/test/shell/Test2/OMakefile
Added omake-jumbo-branches/auto/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/auto/test/shell/Test2/run.osh
Added omake-jumbo-branches/auto/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/auto/test/shell/Test3/
Added omake-jumbo-branches/auto/test/shell/Test3/run.osh
Added omake-jumbo-branches/auto/test/shell/Test4/
Added omake-jumbo-branches/auto/test/shell/Test4/run.osh
Added omake-jumbo-branches/auto/test/simple/Test5
Added omake-jumbo-branches/auto/test/simple/Test6
Added omake-jumbo-branches/auto/test/simple/Test7
Added omake-jumbo-branches/auto/test/static/
Added omake-jumbo-branches/auto/test/static/Test1/
Added omake-jumbo-branches/auto/test/static/Test1/OMakeroot
Added omake-jumbo-branches/auto/test/static/Test1/run.osh
Added omake-jumbo-branches/auto/test/static/Test1/stdout.expected
Added omake-jumbo-branches/auto/test/static/Test2/
Added omake-jumbo-branches/auto/test/static/Test2/OMakeroot
Added omake-jumbo-branches/auto/test/static/Test2/run.osh
Added omake-jumbo-branches/auto/test/static/Test2/stdout.expected
Added omake-jumbo-branches/auto/test/static/Test3/
Added omake-jumbo-branches/auto/test/static/Test3/OMakeroot
Added omake-jumbo-branches/auto/test/static/Test3/run.osh
Added omake-jumbo-branches/auto/test/static/Test3/stdout.expected
Added omake-jumbo-branches/const/test/diff.om
Added omake-jumbo-branches/const/test/exn/Test4
Added omake-jumbo-branches/const/test/exn/Test5
Added omake-jumbo-branches/const/test/memo/
Added omake-jumbo-branches/const/test/memo/Test1/
Added omake-jumbo-branches/const/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/const/test/memo/Test1/run.osh
Added omake-jumbo-branches/const/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/const/test/memo/Test2/
Added omake-jumbo-branches/const/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/const/test/memo/Test2/run.osh
Added omake-jumbo-branches/const/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/const/test/memo/Test3/
Added omake-jumbo-branches/const/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/const/test/memo/Test3/run.osh
Added omake-jumbo-branches/const/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/const/test/memo/Test4/
Added omake-jumbo-branches/const/test/memo/Test4/memo.om
Added omake-jumbo-branches/const/test/memo/Test4/run.osh
Added omake-jumbo-branches/const/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/const/test/memo/Test5/
Added omake-jumbo-branches/const/test/memo/Test5/fib.om
Added omake-jumbo-branches/const/test/memo/Test5/run.osh
Added omake-jumbo-branches/const/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/const/test/object/Test2
Added omake-jumbo-branches/const/test/object/Test3
Added omake-jumbo-branches/const/test/object/Test4
Added omake-jumbo-branches/const/test/object/Test5
Added omake-jumbo-branches/const/test/shell/
Added omake-jumbo-branches/const/test/shell/Test1/
Added omake-jumbo-branches/const/test/shell/Test1/run.osh
Added omake-jumbo-branches/const/test/shell/Test1/shell.om
Added omake-jumbo-branches/const/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/const/test/shell/Test2/
Added omake-jumbo-branches/const/test/shell/Test2/OMakefile
Added omake-jumbo-branches/const/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/const/test/shell/Test2/run.osh
Added omake-jumbo-branches/const/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/const/test/shell/Test3/
Added omake-jumbo-branches/const/test/shell/Test3/run.osh
Added omake-jumbo-branches/const/test/shell/Test4/
Added omake-jumbo-branches/const/test/shell/Test4/run.osh
Added omake-jumbo-branches/const/test/simple/Test5
Added omake-jumbo-branches/const/test/simple/Test6
Added omake-jumbo-branches/const/test/simple/Test7
Added omake-jumbo-branches/const/test/static/
Added omake-jumbo-branches/const/test/static/Test1/
Added omake-jumbo-branches/const/test/static/Test1/OMakeroot
Added omake-jumbo-branches/const/test/static/Test1/run.osh
Added omake-jumbo-branches/const/test/static/Test1/stdout.expected
Added omake-jumbo-branches/const/test/static/Test2/
Added omake-jumbo-branches/const/test/static/Test2/OMakeroot
Added omake-jumbo-branches/const/test/static/Test2/run.osh
Added omake-jumbo-branches/const/test/static/Test2/stdout.expected
Added omake-jumbo-branches/const/test/static/Test3/
Added omake-jumbo-branches/const/test/static/Test3/OMakeroot
Added omake-jumbo-branches/const/test/static/Test3/run.osh
Added omake-jumbo-branches/const/test/static/Test3/stdout.expected
Added omake-jumbo-branches/dll/test/diff.om
Added omake-jumbo-branches/dll/test/exn/Test4
Added omake-jumbo-branches/dll/test/exn/Test5
Added omake-jumbo-branches/dll/test/memo/
Added omake-jumbo-branches/dll/test/memo/Test1/
Added omake-jumbo-branches/dll/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/dll/test/memo/Test1/run.osh
Added omake-jumbo-branches/dll/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/dll/test/memo/Test2/
Added omake-jumbo-branches/dll/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/dll/test/memo/Test2/run.osh
Added omake-jumbo-branches/dll/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/dll/test/memo/Test3/
Added omake-jumbo-branches/dll/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/dll/test/memo/Test3/run.osh
Added omake-jumbo-branches/dll/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/dll/test/memo/Test4/
Added omake-jumbo-branches/dll/test/memo/Test4/memo.om
Added omake-jumbo-branches/dll/test/memo/Test4/run.osh
Added omake-jumbo-branches/dll/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/dll/test/memo/Test5/
Added omake-jumbo-branches/dll/test/memo/Test5/fib.om
Added omake-jumbo-branches/dll/test/memo/Test5/run.osh
Added omake-jumbo-branches/dll/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/dll/test/object/Test2
Added omake-jumbo-branches/dll/test/object/Test3
Added omake-jumbo-branches/dll/test/object/Test4
Added omake-jumbo-branches/dll/test/object/Test5
Added omake-jumbo-branches/dll/test/shell/
Added omake-jumbo-branches/dll/test/shell/Test1/
Added omake-jumbo-branches/dll/test/shell/Test1/run.osh
Added omake-jumbo-branches/dll/test/shell/Test1/shell.om
Added omake-jumbo-branches/dll/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/dll/test/shell/Test2/
Added omake-jumbo-branches/dll/test/shell/Test2/OMakefile
Added omake-jumbo-branches/dll/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/dll/test/shell/Test2/run.osh
Added omake-jumbo-branches/dll/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/dll/test/shell/Test3/
Added omake-jumbo-branches/dll/test/shell/Test3/run.osh
Added omake-jumbo-branches/dll/test/shell/Test4/
Added omake-jumbo-branches/dll/test/shell/Test4/run.osh
Added omake-jumbo-branches/dll/test/simple/Test5
Added omake-jumbo-branches/dll/test/simple/Test6
Added omake-jumbo-branches/dll/test/simple/Test7
Added omake-jumbo-branches/dll/test/static/
Added omake-jumbo-branches/dll/test/static/Test1/
Added omake-jumbo-branches/dll/test/static/Test1/OMakeroot
Added omake-jumbo-branches/dll/test/static/Test1/run.osh
Added omake-jumbo-branches/dll/test/static/Test1/stdout.expected
Added omake-jumbo-branches/dll/test/static/Test2/
Added omake-jumbo-branches/dll/test/static/Test2/OMakeroot
Added omake-jumbo-branches/dll/test/static/Test2/run.osh
Added omake-jumbo-branches/dll/test/static/Test2/stdout.expected
Added omake-jumbo-branches/dll/test/static/Test3/
Added omake-jumbo-branches/dll/test/static/Test3/OMakeroot
Added omake-jumbo-branches/dll/test/static/Test3/run.osh
Added omake-jumbo-branches/dll/test/static/Test3/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/diff.om
Added omake-jumbo-branches/dll-fuse/test/exn/Test4
Added omake-jumbo-branches/dll-fuse/test/exn/Test5
Added omake-jumbo-branches/dll-fuse/test/memo/
Added omake-jumbo-branches/dll-fuse/test/memo/Test1/
Added omake-jumbo-branches/dll-fuse/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/dll-fuse/test/memo/Test1/run.osh
Added omake-jumbo-branches/dll-fuse/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/memo/Test2/
Added omake-jumbo-branches/dll-fuse/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/dll-fuse/test/memo/Test2/run.osh
Added omake-jumbo-branches/dll-fuse/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/memo/Test3/
Added omake-jumbo-branches/dll-fuse/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/dll-fuse/test/memo/Test3/run.osh
Added omake-jumbo-branches/dll-fuse/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/memo/Test4/
Added omake-jumbo-branches/dll-fuse/test/memo/Test4/memo.om
Added omake-jumbo-branches/dll-fuse/test/memo/Test4/run.osh
Added omake-jumbo-branches/dll-fuse/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/memo/Test5/
Added omake-jumbo-branches/dll-fuse/test/memo/Test5/fib.om
Added omake-jumbo-branches/dll-fuse/test/memo/Test5/run.osh
Added omake-jumbo-branches/dll-fuse/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/object/Test2
Added omake-jumbo-branches/dll-fuse/test/object/Test3
Added omake-jumbo-branches/dll-fuse/test/object/Test4
Added omake-jumbo-branches/dll-fuse/test/object/Test5
Added omake-jumbo-branches/dll-fuse/test/shell/
Added omake-jumbo-branches/dll-fuse/test/shell/Test1/
Added omake-jumbo-branches/dll-fuse/test/shell/Test1/run.osh
Added omake-jumbo-branches/dll-fuse/test/shell/Test1/shell.om
Added omake-jumbo-branches/dll-fuse/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/shell/Test2/
Added omake-jumbo-branches/dll-fuse/test/shell/Test2/OMakefile
Added omake-jumbo-branches/dll-fuse/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/dll-fuse/test/shell/Test2/run.osh
Added omake-jumbo-branches/dll-fuse/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/shell/Test3/
Added omake-jumbo-branches/dll-fuse/test/shell/Test3/run.osh
Added omake-jumbo-branches/dll-fuse/test/shell/Test4/
Added omake-jumbo-branches/dll-fuse/test/shell/Test4/run.osh
Added omake-jumbo-branches/dll-fuse/test/simple/Test5
Added omake-jumbo-branches/dll-fuse/test/simple/Test6
Added omake-jumbo-branches/dll-fuse/test/simple/Test7
Added omake-jumbo-branches/dll-fuse/test/static/
Added omake-jumbo-branches/dll-fuse/test/static/Test1/
Added omake-jumbo-branches/dll-fuse/test/static/Test1/OMakeroot
Added omake-jumbo-branches/dll-fuse/test/static/Test1/run.osh
Added omake-jumbo-branches/dll-fuse/test/static/Test1/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/static/Test2/
Added omake-jumbo-branches/dll-fuse/test/static/Test2/OMakeroot
Added omake-jumbo-branches/dll-fuse/test/static/Test2/run.osh
Added omake-jumbo-branches/dll-fuse/test/static/Test2/stdout.expected
Added omake-jumbo-branches/dll-fuse/test/static/Test3/
Added omake-jumbo-branches/dll-fuse/test/static/Test3/OMakeroot
Added omake-jumbo-branches/dll-fuse/test/static/Test3/run.osh
Added omake-jumbo-branches/dll-fuse/test/static/Test3/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/diff.om
Added omake-jumbo-branches/dll-odbc/test/exn/Test4
Added omake-jumbo-branches/dll-odbc/test/exn/Test5
Added omake-jumbo-branches/dll-odbc/test/memo/
Added omake-jumbo-branches/dll-odbc/test/memo/Test1/
Added omake-jumbo-branches/dll-odbc/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/dll-odbc/test/memo/Test1/run.osh
Added omake-jumbo-branches/dll-odbc/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/memo/Test2/
Added omake-jumbo-branches/dll-odbc/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/dll-odbc/test/memo/Test2/run.osh
Added omake-jumbo-branches/dll-odbc/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/memo/Test3/
Added omake-jumbo-branches/dll-odbc/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/dll-odbc/test/memo/Test3/run.osh
Added omake-jumbo-branches/dll-odbc/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/memo/Test4/
Added omake-jumbo-branches/dll-odbc/test/memo/Test4/memo.om
Added omake-jumbo-branches/dll-odbc/test/memo/Test4/run.osh
Added omake-jumbo-branches/dll-odbc/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/memo/Test5/
Added omake-jumbo-branches/dll-odbc/test/memo/Test5/fib.om
Added omake-jumbo-branches/dll-odbc/test/memo/Test5/run.osh
Added omake-jumbo-branches/dll-odbc/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/object/Test2
Added omake-jumbo-branches/dll-odbc/test/object/Test3
Added omake-jumbo-branches/dll-odbc/test/object/Test4
Added omake-jumbo-branches/dll-odbc/test/object/Test5
Added omake-jumbo-branches/dll-odbc/test/shell/
Added omake-jumbo-branches/dll-odbc/test/shell/Test1/
Added omake-jumbo-branches/dll-odbc/test/shell/Test1/run.osh
Added omake-jumbo-branches/dll-odbc/test/shell/Test1/shell.om
Added omake-jumbo-branches/dll-odbc/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/shell/Test2/
Added omake-jumbo-branches/dll-odbc/test/shell/Test2/OMakefile
Added omake-jumbo-branches/dll-odbc/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/dll-odbc/test/shell/Test2/run.osh
Added omake-jumbo-branches/dll-odbc/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/shell/Test3/
Added omake-jumbo-branches/dll-odbc/test/shell/Test3/run.osh
Added omake-jumbo-branches/dll-odbc/test/shell/Test4/
Added omake-jumbo-branches/dll-odbc/test/shell/Test4/run.osh
Added omake-jumbo-branches/dll-odbc/test/simple/Test5
Added omake-jumbo-branches/dll-odbc/test/simple/Test6
Added omake-jumbo-branches/dll-odbc/test/simple/Test7
Added omake-jumbo-branches/dll-odbc/test/static/
Added omake-jumbo-branches/dll-odbc/test/static/Test1/
Added omake-jumbo-branches/dll-odbc/test/static/Test1/OMakeroot
Added omake-jumbo-branches/dll-odbc/test/static/Test1/run.osh
Added omake-jumbo-branches/dll-odbc/test/static/Test1/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/static/Test2/
Added omake-jumbo-branches/dll-odbc/test/static/Test2/OMakeroot
Added omake-jumbo-branches/dll-odbc/test/static/Test2/run.osh
Added omake-jumbo-branches/dll-odbc/test/static/Test2/stdout.expected
Added omake-jumbo-branches/dll-odbc/test/static/Test3/
Added omake-jumbo-branches/dll-odbc/test/static/Test3/OMakeroot
Added omake-jumbo-branches/dll-odbc/test/static/Test3/run.osh
Added omake-jumbo-branches/dll-odbc/test/static/Test3/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/diff.om
Added omake-jumbo-branches/dll-syntax/test/exn/Test4
Added omake-jumbo-branches/dll-syntax/test/exn/Test5
Added omake-jumbo-branches/dll-syntax/test/memo/
Added omake-jumbo-branches/dll-syntax/test/memo/Test1/
Added omake-jumbo-branches/dll-syntax/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/dll-syntax/test/memo/Test1/run.osh
Added omake-jumbo-branches/dll-syntax/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/memo/Test2/
Added omake-jumbo-branches/dll-syntax/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/dll-syntax/test/memo/Test2/run.osh
Added omake-jumbo-branches/dll-syntax/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/memo/Test3/
Added omake-jumbo-branches/dll-syntax/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/dll-syntax/test/memo/Test3/run.osh
Added omake-jumbo-branches/dll-syntax/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/memo/Test4/
Added omake-jumbo-branches/dll-syntax/test/memo/Test4/memo.om
Added omake-jumbo-branches/dll-syntax/test/memo/Test4/run.osh
Added omake-jumbo-branches/dll-syntax/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/memo/Test5/
Added omake-jumbo-branches/dll-syntax/test/memo/Test5/fib.om
Added omake-jumbo-branches/dll-syntax/test/memo/Test5/run.osh
Added omake-jumbo-branches/dll-syntax/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/object/Test2
Added omake-jumbo-branches/dll-syntax/test/object/Test3
Added omake-jumbo-branches/dll-syntax/test/object/Test4
Added omake-jumbo-branches/dll-syntax/test/object/Test5
Added omake-jumbo-branches/dll-syntax/test/shell/
Added omake-jumbo-branches/dll-syntax/test/shell/Test1/
Added omake-jumbo-branches/dll-syntax/test/shell/Test1/run.osh
Added omake-jumbo-branches/dll-syntax/test/shell/Test1/shell.om
Added omake-jumbo-branches/dll-syntax/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/shell/Test2/
Added omake-jumbo-branches/dll-syntax/test/shell/Test2/OMakefile
Added omake-jumbo-branches/dll-syntax/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/dll-syntax/test/shell/Test2/run.osh
Added omake-jumbo-branches/dll-syntax/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/shell/Test3/
Added omake-jumbo-branches/dll-syntax/test/shell/Test3/run.osh
Added omake-jumbo-branches/dll-syntax/test/shell/Test4/
Added omake-jumbo-branches/dll-syntax/test/shell/Test4/run.osh
Added omake-jumbo-branches/dll-syntax/test/simple/Test5
Added omake-jumbo-branches/dll-syntax/test/simple/Test6
Added omake-jumbo-branches/dll-syntax/test/simple/Test7
Added omake-jumbo-branches/dll-syntax/test/static/
Added omake-jumbo-branches/dll-syntax/test/static/Test1/
Added omake-jumbo-branches/dll-syntax/test/static/Test1/OMakeroot
Added omake-jumbo-branches/dll-syntax/test/static/Test1/run.osh
Added omake-jumbo-branches/dll-syntax/test/static/Test1/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/static/Test2/
Added omake-jumbo-branches/dll-syntax/test/static/Test2/OMakeroot
Added omake-jumbo-branches/dll-syntax/test/static/Test2/run.osh
Added omake-jumbo-branches/dll-syntax/test/static/Test2/stdout.expected
Added omake-jumbo-branches/dll-syntax/test/static/Test3/
Added omake-jumbo-branches/dll-syntax/test/static/Test3/OMakeroot
Added omake-jumbo-branches/dll-syntax/test/static/Test3/run.osh
Added omake-jumbo-branches/dll-syntax/test/static/Test3/stdout.expected
Added omake-jumbo-branches/dll2/test/diff.om
Added omake-jumbo-branches/dll2/test/exn/Test4
Added omake-jumbo-branches/dll2/test/exn/Test5
Added omake-jumbo-branches/dll2/test/memo/
Added omake-jumbo-branches/dll2/test/memo/Test1/
Added omake-jumbo-branches/dll2/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/dll2/test/memo/Test1/run.osh
Added omake-jumbo-branches/dll2/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/dll2/test/memo/Test2/
Added omake-jumbo-branches/dll2/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/dll2/test/memo/Test2/run.osh
Added omake-jumbo-branches/dll2/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/dll2/test/memo/Test3/
Added omake-jumbo-branches/dll2/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/dll2/test/memo/Test3/run.osh
Added omake-jumbo-branches/dll2/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/dll2/test/memo/Test4/
Added omake-jumbo-branches/dll2/test/memo/Test4/memo.om
Added omake-jumbo-branches/dll2/test/memo/Test4/run.osh
Added omake-jumbo-branches/dll2/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/dll2/test/memo/Test5/
Added omake-jumbo-branches/dll2/test/memo/Test5/fib.om
Added omake-jumbo-branches/dll2/test/memo/Test5/run.osh
Added omake-jumbo-branches/dll2/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/dll2/test/object/Test2
Added omake-jumbo-branches/dll2/test/object/Test3
Added omake-jumbo-branches/dll2/test/object/Test4
Added omake-jumbo-branches/dll2/test/object/Test5
Added omake-jumbo-branches/dll2/test/shell/
Added omake-jumbo-branches/dll2/test/shell/Test1/
Added omake-jumbo-branches/dll2/test/shell/Test1/run.osh
Added omake-jumbo-branches/dll2/test/shell/Test1/shell.om
Added omake-jumbo-branches/dll2/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/dll2/test/shell/Test2/
Added omake-jumbo-branches/dll2/test/shell/Test2/OMakefile
Added omake-jumbo-branches/dll2/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/dll2/test/shell/Test2/run.osh
Added omake-jumbo-branches/dll2/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/dll2/test/shell/Test3/
Added omake-jumbo-branches/dll2/test/shell/Test3/run.osh
Added omake-jumbo-branches/dll2/test/shell/Test4/
Added omake-jumbo-branches/dll2/test/shell/Test4/run.osh
Added omake-jumbo-branches/dll2/test/simple/Test5
Added omake-jumbo-branches/dll2/test/simple/Test6
Added omake-jumbo-branches/dll2/test/simple/Test7
Added omake-jumbo-branches/dll2/test/static/
Added omake-jumbo-branches/dll2/test/static/Test1/
Added omake-jumbo-branches/dll2/test/static/Test1/OMakeroot
Added omake-jumbo-branches/dll2/test/static/Test1/run.osh
Added omake-jumbo-branches/dll2/test/static/Test1/stdout.expected
Added omake-jumbo-branches/dll2/test/static/Test2/
Added omake-jumbo-branches/dll2/test/static/Test2/OMakeroot
Added omake-jumbo-branches/dll2/test/static/Test2/run.osh
Added omake-jumbo-branches/dll2/test/static/Test2/stdout.expected
Added omake-jumbo-branches/dll2/test/static/Test3/
Added omake-jumbo-branches/dll2/test/static/Test3/OMakeroot
Added omake-jumbo-branches/dll2/test/static/Test3/run.osh
Added omake-jumbo-branches/dll2/test/static/Test3/stdout.expected
Added omake-jumbo-branches/everything/test/diff.om
Added omake-jumbo-branches/everything/test/exn/Test4
Added omake-jumbo-branches/everything/test/exn/Test5
Added omake-jumbo-branches/everything/test/memo/
Added omake-jumbo-branches/everything/test/memo/Test1/
Added omake-jumbo-branches/everything/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/everything/test/memo/Test1/run.osh
Added omake-jumbo-branches/everything/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/everything/test/memo/Test2/
Added omake-jumbo-branches/everything/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/everything/test/memo/Test2/run.osh
Added omake-jumbo-branches/everything/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/everything/test/memo/Test3/
Added omake-jumbo-branches/everything/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/everything/test/memo/Test3/run.osh
Added omake-jumbo-branches/everything/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/everything/test/memo/Test4/
Added omake-jumbo-branches/everything/test/memo/Test4/memo.om
Added omake-jumbo-branches/everything/test/memo/Test4/run.osh
Added omake-jumbo-branches/everything/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/everything/test/memo/Test5/
Added omake-jumbo-branches/everything/test/memo/Test5/fib.om
Added omake-jumbo-branches/everything/test/memo/Test5/run.osh
Added omake-jumbo-branches/everything/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/everything/test/object/Test2
Added omake-jumbo-branches/everything/test/object/Test3
Added omake-jumbo-branches/everything/test/object/Test4
Added omake-jumbo-branches/everything/test/object/Test5
Added omake-jumbo-branches/everything/test/shell/
Added omake-jumbo-branches/everything/test/shell/Test1/
Added omake-jumbo-branches/everything/test/shell/Test1/run.osh
Added omake-jumbo-branches/everything/test/shell/Test1/shell.om
Added omake-jumbo-branches/everything/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/everything/test/shell/Test2/
Added omake-jumbo-branches/everything/test/shell/Test2/OMakefile
Added omake-jumbo-branches/everything/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/everything/test/shell/Test2/run.osh
Added omake-jumbo-branches/everything/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/everything/test/shell/Test3/
Added omake-jumbo-branches/everything/test/shell/Test3/run.osh
Added omake-jumbo-branches/everything/test/shell/Test4/
Added omake-jumbo-branches/everything/test/shell/Test4/run.osh
Added omake-jumbo-branches/everything/test/simple/Test5
Added omake-jumbo-branches/everything/test/simple/Test6
Added omake-jumbo-branches/everything/test/simple/Test7
Added omake-jumbo-branches/everything/test/static/
Added omake-jumbo-branches/everything/test/static/Test1/
Added omake-jumbo-branches/everything/test/static/Test1/OMakeroot
Added omake-jumbo-branches/everything/test/static/Test1/run.osh
Added omake-jumbo-branches/everything/test/static/Test1/stdout.expected
Added omake-jumbo-branches/everything/test/static/Test2/
Added omake-jumbo-branches/everything/test/static/Test2/OMakeroot
Added omake-jumbo-branches/everything/test/static/Test2/run.osh
Added omake-jumbo-branches/everything/test/static/Test2/stdout.expected
Added omake-jumbo-branches/everything/test/static/Test3/
Added omake-jumbo-branches/everything/test/static/Test3/OMakeroot
Added omake-jumbo-branches/everything/test/static/Test3/run.osh
Added omake-jumbo-branches/everything/test/static/Test3/stdout.expected
Added omake-jumbo-branches/int/test/diff.om
Added omake-jumbo-branches/int/test/exn/Test4
Added omake-jumbo-branches/int/test/exn/Test5
Added omake-jumbo-branches/int/test/memo/
Added omake-jumbo-branches/int/test/memo/Test1/
Added omake-jumbo-branches/int/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/int/test/memo/Test1/run.osh
Added omake-jumbo-branches/int/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/int/test/memo/Test2/
Added omake-jumbo-branches/int/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/int/test/memo/Test2/run.osh
Added omake-jumbo-branches/int/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/int/test/memo/Test3/
Added omake-jumbo-branches/int/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/int/test/memo/Test3/run.osh
Added omake-jumbo-branches/int/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/int/test/memo/Test4/
Added omake-jumbo-branches/int/test/memo/Test4/memo.om
Added omake-jumbo-branches/int/test/memo/Test4/run.osh
Added omake-jumbo-branches/int/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/int/test/memo/Test5/
Added omake-jumbo-branches/int/test/memo/Test5/fib.om
Added omake-jumbo-branches/int/test/memo/Test5/run.osh
Added omake-jumbo-branches/int/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/int/test/object/Test2
Added omake-jumbo-branches/int/test/object/Test3
Added omake-jumbo-branches/int/test/object/Test4
Added omake-jumbo-branches/int/test/object/Test5
Added omake-jumbo-branches/int/test/shell/
Added omake-jumbo-branches/int/test/shell/Test1/
Added omake-jumbo-branches/int/test/shell/Test1/run.osh
Added omake-jumbo-branches/int/test/shell/Test1/shell.om
Added omake-jumbo-branches/int/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/int/test/shell/Test2/
Added omake-jumbo-branches/int/test/shell/Test2/OMakefile
Added omake-jumbo-branches/int/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/int/test/shell/Test2/run.osh
Added omake-jumbo-branches/int/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/int/test/shell/Test3/
Added omake-jumbo-branches/int/test/shell/Test3/run.osh
Added omake-jumbo-branches/int/test/shell/Test4/
Added omake-jumbo-branches/int/test/shell/Test4/run.osh
Added omake-jumbo-branches/int/test/simple/Test5
Added omake-jumbo-branches/int/test/simple/Test6
Added omake-jumbo-branches/int/test/simple/Test7
Added omake-jumbo-branches/int/test/static/
Added omake-jumbo-branches/int/test/static/Test1/
Added omake-jumbo-branches/int/test/static/Test1/OMakeroot
Added omake-jumbo-branches/int/test/static/Test1/run.osh
Added omake-jumbo-branches/int/test/static/Test1/stdout.expected
Added omake-jumbo-branches/int/test/static/Test2/
Added omake-jumbo-branches/int/test/static/Test2/OMakeroot
Added omake-jumbo-branches/int/test/static/Test2/run.osh
Added omake-jumbo-branches/int/test/static/Test2/stdout.expected
Added omake-jumbo-branches/int/test/static/Test3/
Added omake-jumbo-branches/int/test/static/Test3/OMakeroot
Added omake-jumbo-branches/int/test/static/Test3/run.osh
Added omake-jumbo-branches/int/test/static/Test3/stdout.expected
Added omake-jumbo-branches/keyword/test/diff.om
Added omake-jumbo-branches/keyword/test/exn/Test4
Added omake-jumbo-branches/keyword/test/exn/Test5
Added omake-jumbo-branches/keyword/test/memo/
Added omake-jumbo-branches/keyword/test/memo/Test1/
Added omake-jumbo-branches/keyword/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/keyword/test/memo/Test1/run.osh
Added omake-jumbo-branches/keyword/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/keyword/test/memo/Test2/
Added omake-jumbo-branches/keyword/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/keyword/test/memo/Test2/run.osh
Added omake-jumbo-branches/keyword/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/keyword/test/memo/Test3/
Added omake-jumbo-branches/keyword/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/keyword/test/memo/Test3/run.osh
Added omake-jumbo-branches/keyword/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/keyword/test/memo/Test4/
Added omake-jumbo-branches/keyword/test/memo/Test4/memo.om
Added omake-jumbo-branches/keyword/test/memo/Test4/run.osh
Added omake-jumbo-branches/keyword/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/keyword/test/memo/Test5/
Added omake-jumbo-branches/keyword/test/memo/Test5/fib.om
Added omake-jumbo-branches/keyword/test/memo/Test5/run.osh
Added omake-jumbo-branches/keyword/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/keyword/test/object/Test2
Added omake-jumbo-branches/keyword/test/object/Test3
Added omake-jumbo-branches/keyword/test/object/Test4
Added omake-jumbo-branches/keyword/test/object/Test5
Added omake-jumbo-branches/keyword/test/shell/
Added omake-jumbo-branches/keyword/test/shell/Test1/
Added omake-jumbo-branches/keyword/test/shell/Test1/run.osh
Added omake-jumbo-branches/keyword/test/shell/Test1/shell.om
Added omake-jumbo-branches/keyword/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/keyword/test/shell/Test2/
Added omake-jumbo-branches/keyword/test/shell/Test2/OMakefile
Added omake-jumbo-branches/keyword/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/keyword/test/shell/Test2/run.osh
Added omake-jumbo-branches/keyword/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/keyword/test/shell/Test3/
Added omake-jumbo-branches/keyword/test/shell/Test3/run.osh
Added omake-jumbo-branches/keyword/test/shell/Test4/
Added omake-jumbo-branches/keyword/test/shell/Test4/run.osh
Added omake-jumbo-branches/keyword/test/simple/Test5
Added omake-jumbo-branches/keyword/test/simple/Test6
Added omake-jumbo-branches/keyword/test/simple/Test7
Added omake-jumbo-branches/keyword/test/static/
Added omake-jumbo-branches/keyword/test/static/Test1/
Added omake-jumbo-branches/keyword/test/static/Test1/OMakeroot
Added omake-jumbo-branches/keyword/test/static/Test1/run.osh
Added omake-jumbo-branches/keyword/test/static/Test1/stdout.expected
Added omake-jumbo-branches/keyword/test/static/Test2/
Added omake-jumbo-branches/keyword/test/static/Test2/OMakeroot
Added omake-jumbo-branches/keyword/test/static/Test2/run.osh
Added omake-jumbo-branches/keyword/test/static/Test2/stdout.expected
Added omake-jumbo-branches/keyword/test/static/Test3/
Added omake-jumbo-branches/keyword/test/static/Test3/OMakeroot
Added omake-jumbo-branches/keyword/test/static/Test3/run.osh
Added omake-jumbo-branches/keyword/test/static/Test3/stdout.expected
Added omake-jumbo-branches/parse/test/diff.om
Added omake-jumbo-branches/parse/test/exn/Test4
Added omake-jumbo-branches/parse/test/exn/Test5
Added omake-jumbo-branches/parse/test/memo/
Added omake-jumbo-branches/parse/test/memo/Test1/
Added omake-jumbo-branches/parse/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/parse/test/memo/Test1/run.osh
Added omake-jumbo-branches/parse/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/parse/test/memo/Test2/
Added omake-jumbo-branches/parse/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/parse/test/memo/Test2/run.osh
Added omake-jumbo-branches/parse/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/parse/test/memo/Test3/
Added omake-jumbo-branches/parse/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/parse/test/memo/Test3/run.osh
Added omake-jumbo-branches/parse/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/parse/test/memo/Test4/
Added omake-jumbo-branches/parse/test/memo/Test4/memo.om
Added omake-jumbo-branches/parse/test/memo/Test4/run.osh
Added omake-jumbo-branches/parse/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/parse/test/memo/Test5/
Added omake-jumbo-branches/parse/test/memo/Test5/fib.om
Added omake-jumbo-branches/parse/test/memo/Test5/run.osh
Added omake-jumbo-branches/parse/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/parse/test/object/Test2
Added omake-jumbo-branches/parse/test/object/Test3
Added omake-jumbo-branches/parse/test/object/Test4
Added omake-jumbo-branches/parse/test/object/Test5
Added omake-jumbo-branches/parse/test/shell/
Added omake-jumbo-branches/parse/test/shell/Test1/
Added omake-jumbo-branches/parse/test/shell/Test1/run.osh
Added omake-jumbo-branches/parse/test/shell/Test1/shell.om
Added omake-jumbo-branches/parse/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/parse/test/shell/Test2/
Added omake-jumbo-branches/parse/test/shell/Test2/OMakefile
Added omake-jumbo-branches/parse/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/parse/test/shell/Test2/run.osh
Added omake-jumbo-branches/parse/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/parse/test/shell/Test3/
Added omake-jumbo-branches/parse/test/shell/Test3/run.osh
Added omake-jumbo-branches/parse/test/shell/Test4/
Added omake-jumbo-branches/parse/test/shell/Test4/run.osh
Added omake-jumbo-branches/parse/test/simple/Test5
Added omake-jumbo-branches/parse/test/simple/Test6
Added omake-jumbo-branches/parse/test/simple/Test7
Added omake-jumbo-branches/parse/test/static/
Added omake-jumbo-branches/parse/test/static/Test1/
Added omake-jumbo-branches/parse/test/static/Test1/OMakeroot
Added omake-jumbo-branches/parse/test/static/Test1/run.osh
Added omake-jumbo-branches/parse/test/static/Test1/stdout.expected
Added omake-jumbo-branches/parse/test/static/Test2/
Added omake-jumbo-branches/parse/test/static/Test2/OMakeroot
Added omake-jumbo-branches/parse/test/static/Test2/run.osh
Added omake-jumbo-branches/parse/test/static/Test2/stdout.expected
Added omake-jumbo-branches/parse/test/static/Test3/
Added omake-jumbo-branches/parse/test/static/Test3/OMakeroot
Added omake-jumbo-branches/parse/test/static/Test3/run.osh
Added omake-jumbo-branches/parse/test/static/Test3/stdout.expected
Added omake-jumbo-branches/syntax/test/diff.om
Added omake-jumbo-branches/syntax/test/exn/Test4
Added omake-jumbo-branches/syntax/test/exn/Test5
Added omake-jumbo-branches/syntax/test/memo/
Added omake-jumbo-branches/syntax/test/memo/Test1/
Added omake-jumbo-branches/syntax/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/syntax/test/memo/Test1/run.osh
Added omake-jumbo-branches/syntax/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/syntax/test/memo/Test2/
Added omake-jumbo-branches/syntax/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/syntax/test/memo/Test2/run.osh
Added omake-jumbo-branches/syntax/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/syntax/test/memo/Test3/
Added omake-jumbo-branches/syntax/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/syntax/test/memo/Test3/run.osh
Added omake-jumbo-branches/syntax/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/syntax/test/memo/Test4/
Added omake-jumbo-branches/syntax/test/memo/Test4/memo.om
Added omake-jumbo-branches/syntax/test/memo/Test4/run.osh
Added omake-jumbo-branches/syntax/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/syntax/test/memo/Test5/
Added omake-jumbo-branches/syntax/test/memo/Test5/fib.om
Added omake-jumbo-branches/syntax/test/memo/Test5/run.osh
Added omake-jumbo-branches/syntax/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/syntax/test/object/Test2
Added omake-jumbo-branches/syntax/test/object/Test3
Added omake-jumbo-branches/syntax/test/object/Test4
Added omake-jumbo-branches/syntax/test/object/Test5
Added omake-jumbo-branches/syntax/test/shell/
Added omake-jumbo-branches/syntax/test/shell/Test1/
Added omake-jumbo-branches/syntax/test/shell/Test1/run.osh
Added omake-jumbo-branches/syntax/test/shell/Test1/shell.om
Added omake-jumbo-branches/syntax/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/syntax/test/shell/Test2/
Added omake-jumbo-branches/syntax/test/shell/Test2/OMakefile
Added omake-jumbo-branches/syntax/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/syntax/test/shell/Test2/run.osh
Added omake-jumbo-branches/syntax/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/syntax/test/shell/Test3/
Added omake-jumbo-branches/syntax/test/shell/Test3/run.osh
Added omake-jumbo-branches/syntax/test/shell/Test4/
Added omake-jumbo-branches/syntax/test/shell/Test4/run.osh
Added omake-jumbo-branches/syntax/test/simple/Test5
Added omake-jumbo-branches/syntax/test/simple/Test6
Added omake-jumbo-branches/syntax/test/simple/Test7
Added omake-jumbo-branches/syntax/test/static/
Added omake-jumbo-branches/syntax/test/static/Test1/
Added omake-jumbo-branches/syntax/test/static/Test1/OMakeroot
Added omake-jumbo-branches/syntax/test/static/Test1/run.osh
Added omake-jumbo-branches/syntax/test/static/Test1/stdout.expected
Added omake-jumbo-branches/syntax/test/static/Test2/
Added omake-jumbo-branches/syntax/test/static/Test2/OMakeroot
Added omake-jumbo-branches/syntax/test/static/Test2/run.osh
Added omake-jumbo-branches/syntax/test/static/Test2/stdout.expected
Added omake-jumbo-branches/syntax/test/static/Test3/
Added omake-jumbo-branches/syntax/test/static/Test3/OMakeroot
Added omake-jumbo-branches/syntax/test/static/Test3/run.osh
Added omake-jumbo-branches/syntax/test/static/Test3/stdout.expected
Added omake-jumbo-branches/var2/test/diff.om
Added omake-jumbo-branches/var2/test/exn/Test4
Added omake-jumbo-branches/var2/test/exn/Test5
Added omake-jumbo-branches/var2/test/memo/
Added omake-jumbo-branches/var2/test/memo/Test1/
Added omake-jumbo-branches/var2/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/var2/test/memo/Test1/run.osh
Added omake-jumbo-branches/var2/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/var2/test/memo/Test2/
Added omake-jumbo-branches/var2/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/var2/test/memo/Test2/run.osh
Added omake-jumbo-branches/var2/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/var2/test/memo/Test3/
Added omake-jumbo-branches/var2/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/var2/test/memo/Test3/run.osh
Added omake-jumbo-branches/var2/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/var2/test/memo/Test4/
Added omake-jumbo-branches/var2/test/memo/Test4/memo.om
Added omake-jumbo-branches/var2/test/memo/Test4/run.osh
Added omake-jumbo-branches/var2/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/var2/test/memo/Test5/
Added omake-jumbo-branches/var2/test/memo/Test5/fib.om
Added omake-jumbo-branches/var2/test/memo/Test5/run.osh
Added omake-jumbo-branches/var2/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/var2/test/object/Test2
Added omake-jumbo-branches/var2/test/object/Test3
Added omake-jumbo-branches/var2/test/object/Test4
Added omake-jumbo-branches/var2/test/object/Test5
Added omake-jumbo-branches/var2/test/shell/
Added omake-jumbo-branches/var2/test/shell/Test1/
Added omake-jumbo-branches/var2/test/shell/Test1/run.osh
Added omake-jumbo-branches/var2/test/shell/Test1/shell.om
Added omake-jumbo-branches/var2/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/var2/test/shell/Test2/
Added omake-jumbo-branches/var2/test/shell/Test2/OMakefile
Added omake-jumbo-branches/var2/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/var2/test/shell/Test2/run.osh
Added omake-jumbo-branches/var2/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/var2/test/shell/Test3/
Added omake-jumbo-branches/var2/test/shell/Test3/run.osh
Added omake-jumbo-branches/var2/test/shell/Test4/
Added omake-jumbo-branches/var2/test/shell/Test4/run.osh
Added omake-jumbo-branches/var2/test/simple/Test5
Added omake-jumbo-branches/var2/test/simple/Test6
Added omake-jumbo-branches/var2/test/simple/Test7
Added omake-jumbo-branches/var2/test/static/
Added omake-jumbo-branches/var2/test/static/Test1/
Added omake-jumbo-branches/var2/test/static/Test1/OMakeroot
Added omake-jumbo-branches/var2/test/static/Test1/run.osh
Added omake-jumbo-branches/var2/test/static/Test1/stdout.expected
Added omake-jumbo-branches/var2/test/static/Test2/
Added omake-jumbo-branches/var2/test/static/Test2/OMakeroot
Added omake-jumbo-branches/var2/test/static/Test2/run.osh
Added omake-jumbo-branches/var2/test/static/Test2/stdout.expected
Added omake-jumbo-branches/var2/test/static/Test3/
Added omake-jumbo-branches/var2/test/static/Test3/OMakeroot
Added omake-jumbo-branches/var2/test/static/Test3/run.osh
Added omake-jumbo-branches/var2/test/static/Test3/stdout.expected
Added omake-jumbo-branches/var3/test/diff.om
Added omake-jumbo-branches/var3/test/exn/Test4
Added omake-jumbo-branches/var3/test/exn/Test5
Added omake-jumbo-branches/var3/test/memo/
Added omake-jumbo-branches/var3/test/memo/Test1/
Added omake-jumbo-branches/var3/test/memo/Test1/OMakeroot
Added omake-jumbo-branches/var3/test/memo/Test1/run.osh
Added omake-jumbo-branches/var3/test/memo/Test1/stdout.expected
Added omake-jumbo-branches/var3/test/memo/Test2/
Added omake-jumbo-branches/var3/test/memo/Test2/OMakeroot
Added omake-jumbo-branches/var3/test/memo/Test2/run.osh
Added omake-jumbo-branches/var3/test/memo/Test2/stdout.expected
Added omake-jumbo-branches/var3/test/memo/Test3/
Added omake-jumbo-branches/var3/test/memo/Test3/OMakeroot
Added omake-jumbo-branches/var3/test/memo/Test3/run.osh
Added omake-jumbo-branches/var3/test/memo/Test3/stdout.expected
Added omake-jumbo-branches/var3/test/memo/Test4/
Added omake-jumbo-branches/var3/test/memo/Test4/memo.om
Added omake-jumbo-branches/var3/test/memo/Test4/run.osh
Added omake-jumbo-branches/var3/test/memo/Test4/stdout.expected
Added omake-jumbo-branches/var3/test/memo/Test5/
Added omake-jumbo-branches/var3/test/memo/Test5/fib.om
Added omake-jumbo-branches/var3/test/memo/Test5/run.osh
Added omake-jumbo-branches/var3/test/memo/Test5/stdout.expected
Added omake-jumbo-branches/var3/test/object/Test2
Added omake-jumbo-branches/var3/test/object/Test3
Added omake-jumbo-branches/var3/test/object/Test4
Added omake-jumbo-branches/var3/test/object/Test5
Added omake-jumbo-branches/var3/test/shell/
Added omake-jumbo-branches/var3/test/shell/Test1/
Added omake-jumbo-branches/var3/test/shell/Test1/run.osh
Added omake-jumbo-branches/var3/test/shell/Test1/shell.om
Added omake-jumbo-branches/var3/test/shell/Test1/stdout.expected
Added omake-jumbo-branches/var3/test/shell/Test2/
Added omake-jumbo-branches/var3/test/shell/Test2/OMakefile
Added omake-jumbo-branches/var3/test/shell/Test2/OMakeroot
Added omake-jumbo-branches/var3/test/shell/Test2/run.osh
Added omake-jumbo-branches/var3/test/shell/Test2/stdout.expected
Added omake-jumbo-branches/var3/test/shell/Test3/
Added omake-jumbo-branches/var3/test/shell/Test3/run.osh
Added omake-jumbo-branches/var3/test/shell/Test4/
Added omake-jumbo-branches/var3/test/shell/Test4/run.osh
Added omake-jumbo-branches/var3/test/simple/Test5
Added omake-jumbo-branches/var3/test/simple/Test6
Added omake-jumbo-branches/var3/test/simple/Test7
Added omake-jumbo-branches/var3/test/static/
Added omake-jumbo-branches/var3/test/static/Test1/
Added omake-jumbo-branches/var3/test/static/Test1/OMakeroot
Added omake-jumbo-branches/var3/test/static/Test1/run.osh
Added omake-jumbo-branches/var3/test/static/Test1/stdout.expected
Added omake-jumbo-branches/var3/test/static/Test2/
Added omake-jumbo-branches/var3/test/static/Test2/OMakeroot
Added omake-jumbo-branches/var3/test/static/Test2/run.osh
Added omake-jumbo-branches/var3/test/static/Test2/stdout.expected
Added omake-jumbo-branches/var3/test/static/Test3/
Added omake-jumbo-branches/var3/test/static/Test3/OMakeroot
Added omake-jumbo-branches/var3/test/static/Test3/run.osh
Added omake-jumbo-branches/var3/test/static/Test3/stdout.expected

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 09:59:55 -0700 (Wed, 18 Jul 2007)
Revision: 11316
Log message:

      Use "delayed:memo" instead of "delayed:static" in value printouts of
     static/memo variables.

Changes  Path
+1 -1 omake-branches/0.9.8.x/src/ir/omake_value_print.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 11:32:43 -0700 (Wed, 18 Jul 2007)
Revision: 11320
Log message:

      - Make sure that Sys.Break (and some other exceptions) are never wrapped in an
       UncaughtException
     - When the build is interrupted with Sys.Break, always report the
       exn_error_code, _except_ when this have happened during the -P polling.

Changes  Path
+8 -2 omake-branches/0.9.8.x/src/build/omake_build.ml
+7 -6 omake-branches/0.9.8.x/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-branches/0.9.8.x/src/builtin/omake_builtin_target.ml
+9 -0 omake-branches/0.9.8.x/src/eval/omake_eval.ml
+6 -6 omake-branches/0.9.8.x/src/eval/omake_eval.mli

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 11:35:53 -0700 (Wed, 18 Jul 2007)
Revision: 11321
Log message:

      Oops, my previous commit was broken, sorry.

Changes  Path
+1 -1 omake-branches/0.9.8.x/src/build/omake_build.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 15:12:48 -0700 (Wed, 18 Jul 2007)
Revision: 11333
Log message:

      [Bug 535] Some improvements of Ctrl-C handling on Windows. Often it will still break in weird ways, but now it works correctly more often than before.

Changes  Path
+2 -2 omake-branches/0.9.8.x/src/build/omake_build.ml
+3 -3 omake-branches/0.9.8.x/src/main/omake_shell.ml
+1 -8 omake-branches/0.9.8.x/src/shell/omake_shell_sys.mli
+0 -5 omake-branches/0.9.8.x/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-branches/0.9.8.x/src/shell/omake_shell_sys_win32.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 15:24:57 -0700 (Wed, 18 Jul 2007)
Revision: 11334
Log message:

      Adding a -debug-thread operation.

Changes  Path
+2 -0 omake-branches/0.9.8.x/src/main/omake_main.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 17:30:29 -0700 (Wed, 18 Jul 2007)
Revision: 11337
Log message:

      Need to define public.Node before var3 lands.

Changes  Path
+1 -0 omake-branches/0.9.8.x/lib/Pervasives.om

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 17:31:14 -0700 (Wed, 18 Jul 2007)
Revision: 11338
Log message:

      There is still some nastiness with map-map :-(

Changes  Path
Added omake-branches/0.9.8.x/test/object/Test6

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-18 17:39:40 -0700 (Wed, 18 Jul 2007)
Revision: 11342
Log message:

      This hits a really strange bug under 0.9.8.4, but works correctly under
     0.9.8.x

Changes  Path
Added omake-branches/0.9.8.x/test/object/Test7

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-18 23:51:49 -0700 (Wed, 18 Jul 2007)
Revision: 11349
Log message:

      I think this may work, a few bugs still...

Changes  Path
+0 -1 omake-research/omake-distrib/mk/make_gen
+12 -12 omake-research/omake-distrib/src/Makefile
+12 -12 omake-research/omake-distrib/src/Makefile.nt
+63 -226 omake-research/omake-distrib/src/build/omake_build.ml
+0 -0 omake-research/omake-distrib/src/build/omake_rule.ml
+0 -1 omake-research/omake-distrib/src/exec/OMakefile
+11 -71 omake-research/omake-distrib/src/exec/omake_exec.ml
+1 -0 omake-research/omake-distrib/src/main/OMakefile
+89 -288 omake-research/omake-distrib/src/main/omake_main.ml
+1 -0 omake-research/omake-distrib/src/shell/OMakefile
+1 -2 omake-research/omake-distrib/src/shell/omake_shell_sys_unix.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-18 23:53:42 -0700 (Wed, 18 Jul 2007)
Revision: 11350
Log message:

      Whoops, forgot this one

Changes  Path
Added omake-research/omake-distrib/src/shell/omake_shell_servers.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-18 23:55:21 -0700 (Wed, 18 Jul 2007)
Revision: 11351
Log message:

      Err, sorry, and another

Changes  Path
Added omake-research/omake-distrib/src/main/omake_main_args.ml

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-19 09:06:49 -0700 (Thu, 19 Jul 2007)
Revision: 11352
Log message:

      Exports were not being hoisted correctly.  This fixes objects/Test6

Changes  Path
+5 -5 omake-branches/0.9.8.x/src/env/omake_env.ml
+2 -2 omake-branches/0.9.8.x/src/ir/omake_ir_print.ml
+8 -0 omake-branches/0.9.8.x/src/ir/omake_value_print.ml
+1 -0 omake-branches/0.9.8.x/src/ir/omake_value_print.mli

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-19 09:15:27 -0700 (Thu, 19 Jul 2007)
Revision: 11353
Log message:

      Fix export hoisting for specific vars too.

Changes  Path
+3 -2 omake-branches/0.9.8.x/src/env/omake_env.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-19 09:51:20 -0700 (Thu, 19 Jul 2007)
Revision: 11354
Log message:

      Another example, where map-map still does not work right :-(

Changes  Path
Added omake-branches/0.9.8.x/test/object/Test8

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-19 12:19:39 -0700 (Thu, 19 Jul 2007)
Revision: 11356
Log message:

      Trying to debug the deadlocks I am seeing on Windows when -p is enabled. What I am seeing is that the worker threads are being created, but they never start (even the child part of the Lm_thread.create_thread is never executed). I have no idea how the -p causes this...
     
     In this commit I:
     - Added a lot of thread-related debugging code
     - Made the -debug-thread command-line option also activate Lm_thread.debug_lock and Lm_thread_code.debug_mutex (the latter variable is new).
     - Changed the Lm_thread_core_null so that Lm_thread.Mutex.try_lock would return a value consisntent with the real thread implementation.

Changes  Path
+13 -9 libmojave/stdlib/lm_thread.ml
+8 -7 libmojave/stdlib/lm_thread.mli
+11 -7 libmojave/stdlib/lm_thread_core.mli
+31 -19 libmojave/stdlib/lm_thread_core_null.ml
+113 -8 libmojave/stdlib/lm_thread_core_system.ml
+15 -6 libmojave/stdlib/lm_thread_pool_system.ml
+3 -5 libmojave/stdlib/lm_thread_sig.ml
+1 -1 libmojave/util/lm_hash.ml
+1 -1 libmojave/util/lm_symbol.ml
+1 -1 libmojave/util/lm_symbol_hash.ml
+2 -0 omake-branches/0.9.8.x/src/main/omake_main.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-19 12:34:35 -0700 (Thu, 19 Jul 2007)
Revision: 11358
Log message:

      Choose between omake_shell_sys_unix and omake_shell_sys_win32 based on which
     OS is being used, not based on whether the threads are enabled (since we might
     want to enable them on Unix - e.g. for debugging).

Changes  Path
+1 -1 omake-branches/0.9.8.x/src/shell/OMakefile

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-19 13:13:39 -0700 (Thu, 19 Jul 2007)
Revision: 11359
Log message:

      Minor no-op change - have Lm_notify.file_descr return an option and leave it
     up to Omake_exec_notify to fake it with a Unix.stdin, if necessary.

Changes  Path
+3 -4 libmojave/unix/lm_notify.ml
+3 -6 libmojave/unix/lm_notify.mli
+7 -1 omake-branches/0.9.8.x/src/exec/omake_exec_notify.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 09:30:29 -0700 (Thu, 26 Jul 2007)
Revision: 11448
Log message:

      Fixes the object/Test8 by having the hoisting check that the head variable was
     not already shadowed (as I proposed on the mailing list).
     
     This might not be the right way - please feel free to revert if you disagree
     with this approach.

Changes  Path
+20 -4 omake-branches/0.9.8.x/src/env/omake_env.ml
+1 -1 omake-branches/0.9.8.x/src/env/omake_env.mli
+1 -1 omake-branches/0.9.8.x/src/eval/omake_eval.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 09:36:54 -0700 (Thu, 26 Jul 2007)
Revision: 11449
Log message:

      In OCamlPackage function, check whether the .mli corresponding to the package
     is buildable. If so, try doing the right thing (as requested by Mike Furr,
     furr at cs.umd.edu). Untested.

Changes  Path
+36 -14 omake-branches/0.9.8.x/lib/build/OCaml.om

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 10:12:09 -0700 (Thu, 26 Jul 2007)
Revision: 11450
Log message:

      Regenrated the documentation.

Changes  Path
+329 -328 omake-branches/0.9.8.x/doc/html/omake-all-index.html
+31 -31 omake-branches/0.9.8.x/doc/html/omake-autoconf.html
+138 -138 omake-branches/0.9.8.x/doc/html/omake-build.html
+246 -245 omake-branches/0.9.8.x/doc/html/omake-contents.html
+1106 -1098 omake-branches/0.9.8.x/doc/html/omake-doc.html
+120 -119 omake-branches/0.9.8.x/doc/html/omake-fun-index.html
+35 -35 omake-branches/0.9.8.x/doc/html/omake-grammar.html
+4 -4 omake-branches/0.9.8.x/doc/html/omake-obj-index.html
+34 -34 omake-branches/0.9.8.x/doc/html/omake-options.html
+24 -23 omake-branches/0.9.8.x/doc/html/omake-pervasives.html
+4 -4 omake-branches/0.9.8.x/doc/html/omake-references.html
+18 -18 omake-branches/0.9.8.x/doc/html/omake-shell.html
+80 -77 omake-branches/0.9.8.x/doc/html/omake-system.html
+3 -3 omake-branches/0.9.8.x/doc/html/omake-toc.html
+7 -7 omake-branches/0.9.8.x/doc/html/osh.html
+427 -425 omake-branches/0.9.8.x/doc/info/omake-doc.info
+2 -2 omake-branches/0.9.8.x/doc/info/omake-doc.info-1
+216 -62 omake-branches/0.9.8.x/doc/info/omake-doc.info-10
+92 -106 omake-branches/0.9.8.x/doc/info/omake-doc.info-2
+104 -85 omake-branches/0.9.8.x/doc/info/omake-doc.info-3
+190 -237 omake-branches/0.9.8.x/doc/info/omake-doc.info-4
+169 -181 omake-branches/0.9.8.x/doc/info/omake-doc.info-5
+199 -207 omake-branches/0.9.8.x/doc/info/omake-doc.info-6
+177 -119 omake-branches/0.9.8.x/doc/info/omake-doc.info-7
+122 -151 omake-branches/0.9.8.x/doc/info/omake-doc.info-8
+217 -212 omake-branches/0.9.8.x/doc/info/omake-doc.info-9
Binary omake-branches/0.9.8.x/doc/ps/omake-doc.dvi
Binary omake-branches/0.9.8.x/doc/ps/omake-doc.pdf
Binary omake-branches/0.9.8.x/doc/ps/omake-doc.ps
+361 -239 omake-branches/0.9.8.x/doc/txt/omake-doc.txt

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 11:00:04 -0700 (Thu, 26 Jul 2007)
Revision: 11451
Log message:

      Added a -regex option to find.

Changes  Path
+11 -3 omake-branches/0.9.8.x/src/builtin/omake_builtin_test.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 11:01:01 -0700 (Thu, 26 Jul 2007)
Revision: 11452
Log message:

      - Allow test names to have more to have any number of digits, not just one.
     - Added object/Test09 and object/Test10; Test10 currently fails :-(

Changes  Path
+12 -4 omake-branches/0.9.8.x/test/OMakefile
Copied omake-branches/0.9.8.x/test/object/Test01/ (from rev 11447, omake-branches/0.9.8.x/test/object/Test1)
Copied omake-branches/0.9.8.x/test/object/Test02 (from rev 11447, omake-branches/0.9.8.x/test/object/Test2)
Copied omake-branches/0.9.8.x/test/object/Test03 (from rev 11447, omake-branches/0.9.8.x/test/object/Test3)
Copied omake-branches/0.9.8.x/test/object/Test04 (from rev 11447, omake-branches/0.9.8.x/test/object/Test4)
Copied omake-branches/0.9.8.x/test/object/Test05 (from rev 11447, omake-branches/0.9.8.x/test/object/Test5)
Copied omake-branches/0.9.8.x/test/object/Test06 (from rev 11447, omake-branches/0.9.8.x/test/object/Test6)
Copied omake-branches/0.9.8.x/test/object/Test07 (from rev 11447, omake-branches/0.9.8.x/test/object/Test7)
Copied omake-branches/0.9.8.x/test/object/Test08 (from rev 11447, omake-branches/0.9.8.x/test/object/Test8)
Added omake-branches/0.9.8.x/test/object/Test09
Deleted omake-branches/0.9.8.x/test/object/Test1/
Added omake-branches/0.9.8.x/test/object/Test10
Deleted omake-branches/0.9.8.x/test/object/Test2
Deleted omake-branches/0.9.8.x/test/object/Test3
Deleted omake-branches/0.9.8.x/test/object/Test4
Deleted omake-branches/0.9.8.x/test/object/Test5
Deleted omake-branches/0.9.8.x/test/object/Test6
Deleted omake-branches/0.9.8.x/test/object/Test7
Deleted omake-branches/0.9.8.x/test/object/Test8

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 11:03:07 -0700 (Thu, 26 Jul 2007)
Revision: 11454
Log message:

      Another test that currently fails :-(

Changes  Path
Added omake-branches/0.9.8.x/test/object/Test11

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 11:04:43 -0700 (Thu, 26 Jul 2007)
Revision: 11455
Log message:

      Ignore result.log

Changes  Path
Properties omake-branches/0.9.8.x/test/parse/C/

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 16:13:18 -0700 (Thu, 26 Jul 2007)
Revision: 11460
Log message:

      Minor documentation fix.

Changes  Path
+1 -3 omake-branches/0.9.8.x/lib/Pervasives.om

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 16:28:42 -0700 (Thu, 26 Jul 2007)
Revision: 11461
Log message:

      Fixed the TeTeX 2 autodetection.

Changes  Path
+3 -3 omake-branches/0.9.8.x/lib/build/LaTeX.om

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-26 16:56:22 -0700 (Thu, 26 Jul 2007)
Revision: 11462
Log message:

      Adding support for building shared libraries (.so/.dll). Only minimally
     tested.

Changes  Path
+69 -21 omake-branches/0.9.8.x/lib/build/C.om
+4 -1 omake-branches/0.9.8.x/lib/build/Common.om

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-27 12:08:26 -0700 (Fri, 27 Jul 2007)
Revision: 11468
Log message:

      Everything seems to work except pick_server, though I'm sure once that's working more bugs will appear.

Changes  Path
+1 -1 omake-research/omake-distrib/src/Makefile
+1 -1 omake-research/omake-distrib/src/Makefile.nt
Added omake-research/omake-distrib/src/aux/
Added omake-research/omake-distrib/src/aux/build.sh
+104 -3 omake-research/omake-distrib/src/build/omake_build.ml
+16 -13 omake-research/omake-distrib/src/build/omake_rule.ml
+6 -2 omake-research/omake-distrib/src/build/omake_rule.mli
+2 -2 omake-research/omake-distrib/src/builtin/omake_builtin_base.ml
+2 -2 omake-research/omake-distrib/src/builtin/omake_builtin_target.ml
+6 -4 omake-research/omake-distrib/src/ir/omake_command.ml
+1 -1 omake-research/omake-distrib/src/ir/omake_command.mli
+3 -1 omake-research/omake-distrib/src/ir/omake_command_type.ml
+2 -1 omake-research/omake-distrib/src/main/omake_main.ml
+19 -17 omake-research/omake-distrib/src/shell/omake_shell_job.ml
+2 -2 omake-research/omake-distrib/src/shell/omake_shell_job.mli
+27 -23 omake-research/omake-distrib/src/shell/omake_shell_servers.ml
+3 -1 omake-research/omake-distrib/src/shell/omake_shell_sys_type.ml
+4 -2 omake-research/omake-distrib/src/shell/omake_shell_sys_unix.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-27 12:34:17 -0700 (Fri, 27 Jul 2007)
Revision: 11469
Log message:

      Wrap more calls to Lm_notify in Lm_thread_pool.blocking_section

Changes  Path
+8 -13 omake-branches/0.9.8.x/src/exec/omake_exec_notify.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-27 14:16:45 -0700 (Fri, 27 Jul 2007)
Revision: 11474
Log message:

      Switched server list to a queue, butthis didn't seem to fix anything.

Changes  Path
+9 -21 omake-research/omake-distrib/src/shell/omake_shell_servers.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-27 14:35:52 -0700 (Fri, 27 Jul 2007)
Revision: 11475
Log message:

      - When exiting from -P via Ctrl-C, print a message.
     - A test showing that caching may need to be a bit more precise.

Changes  Path
+1 -0 omake-branches/0.9.8.x/src/build/omake_build.ml
+1 -0 omake-branches/0.9.8.x/test/OMakefile
Added omake-branches/0.9.8.x/test/targets/Test3/
Added omake-branches/0.9.8.x/test/targets/Test3/OMakefile
Added omake-branches/0.9.8.x/test/targets/Test3/OMakeroot
Added omake-branches/0.9.8.x/test/targets/Test3/run.osh

Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-07-27 15:21:18 -0700 (Fri, 27 Jul 2007)
Revision: 11477
Log message:

      Merge to rev #11462.  The test/object/Test0X got lost, but it is very hard
     to propagate additions to all jumbo branches.  Probably we should just do
     
        svn rm XXX/test/object
        svn cp 0.9.8.x/test/object XXX/test/object
     
     for each of the jumbos.

Changes  Path
+454 -246 omake-jumbo-branches/all-features/doc/html/omake-all-index.html
+358 -0 omake-jumbo-branches/all-features/doc/html/omake-autoconf.html
+1245 -0 omake-jumbo-branches/all-features/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/all-features/doc/html/omake-contents.html
+6236 -362 omake-jumbo-branches/all-features/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/all-features/doc/html/omake-fun-index.html
+437 -0 omake-jumbo-branches/all-features/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/all-features/doc/html/omake-obj-index.html
+361 -0 omake-jumbo-branches/all-features/doc/html/omake-options.html
+267 -0 omake-jumbo-branches/all-features/doc/html/omake-pervasives.html
+61 -0 omake-jumbo-branches/all-features/doc/html/omake-references.html
+210 -0 omake-jumbo-branches/all-features/doc/html/omake-shell.html
+875 -0 omake-jumbo-branches/all-features/doc/html/omake-system.html
+6 -1 omake-jumbo-branches/all-features/doc/html/omake-toc.html
+79 -0 omake-jumbo-branches/all-features/doc/html/osh.html
+436 -398 omake-jumbo-branches/all-features/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-1
+222 -61 omake-jumbo-branches/all-features/doc/info/omake-doc.info-10
+98 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-2
+110 -2 omake-jumbo-branches/all-features/doc/info/omake-doc.info-3
+199 -92 omake-jumbo-branches/all-features/doc/info/omake-doc.info-4
+175 -24 omake-jumbo-branches/all-features/doc/info/omake-doc.info-5
+208 -30 omake-jumbo-branches/all-features/doc/info/omake-doc.info-6
+183 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-7
+128 -0 omake-jumbo-branches/all-features/doc/info/omake-doc.info-8
+223 -61 omake-jumbo-branches/all-features/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/all-features/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/all-features/doc/ps/omake-doc.ps
+370 -232 omake-jumbo-branches/all-features/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/all-features/lib/Pervasives.om
+69 -21 omake-jumbo-branches/all-features/lib/build/C.om
+4 -1 omake-jumbo-branches/all-features/lib/build/Common.om
+3 -3 omake-jumbo-branches/all-features/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/all-features/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/all-features/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/all-features/src/builtin/omake_builtin_io.ml
+12 -10 omake-jumbo-branches/all-features/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/all-features/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/all-features/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/all-features/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/all-features/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/all-features/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/all-features/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/all-features/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/all-features/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/all-features/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/all-features/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/all-features/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/all-features/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/all-features/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/all-features/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/all-features/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/all-features/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/all-features/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/all-features/src/shell/OMakefile
+1 -8 omake-jumbo-branches/all-features/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/all-features/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/all-features/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/all-features/test/OMakefile
+433 -246 omake-jumbo-branches/auto/doc/html/omake-all-index.html
+292 -0 omake-jumbo-branches/auto/doc/html/omake-autoconf.html
+1023 -0 omake-jumbo-branches/auto/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/auto/doc/html/omake-contents.html
+5230 -362 omake-jumbo-branches/auto/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/auto/doc/html/omake-fun-index.html
+356 -0 omake-jumbo-branches/auto/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/auto/doc/html/omake-obj-index.html
+295 -0 omake-jumbo-branches/auto/doc/html/omake-options.html
+219 -0 omake-jumbo-branches/auto/doc/html/omake-pervasives.html
+49 -0 omake-jumbo-branches/auto/doc/html/omake-references.html
+171 -0 omake-jumbo-branches/auto/doc/html/omake-shell.html
+716 -0 omake-jumbo-branches/auto/doc/html/omake-system.html
+6 -1 omake-jumbo-branches/auto/doc/html/omake-toc.html
+64 -0 omake-jumbo-branches/auto/doc/html/osh.html
+436 -398 omake-jumbo-branches/auto/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-1
+222 -61 omake-jumbo-branches/auto/doc/info/omake-doc.info-10
+98 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-2
+110 -2 omake-jumbo-branches/auto/doc/info/omake-doc.info-3
+199 -92 omake-jumbo-branches/auto/doc/info/omake-doc.info-4
+175 -24 omake-jumbo-branches/auto/doc/info/omake-doc.info-5
+208 -30 omake-jumbo-branches/auto/doc/info/omake-doc.info-6
+183 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-7
+128 -0 omake-jumbo-branches/auto/doc/info/omake-doc.info-8
+223 -61 omake-jumbo-branches/auto/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/auto/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/auto/doc/ps/omake-doc.ps
+370 -232 omake-jumbo-branches/auto/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/auto/lib/Pervasives.om
+69 -21 omake-jumbo-branches/auto/lib/build/C.om
+4 -1 omake-jumbo-branches/auto/lib/build/Common.om
+3 -3 omake-jumbo-branches/auto/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/auto/lib/build/OCaml.om
+1 -1 omake-jumbo-branches/auto/src/Makefile
+1 -1 omake-jumbo-branches/auto/src/Makefile.nt
+11 -5 omake-jumbo-branches/auto/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/auto/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/auto/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/auto/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/auto/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/auto/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/auto/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/auto/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/auto/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/auto/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/auto/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/auto/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/auto/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/auto/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/auto/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/auto/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/auto/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/auto/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/auto/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/auto/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/auto/src/shell/OMakefile
+1 -8 omake-jumbo-branches/auto/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/auto/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/auto/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/auto/test/OMakefile
+433 -246 omake-jumbo-branches/const/doc/html/omake-all-index.html
+292 -0 omake-jumbo-branches/const/doc/html/omake-autoconf.html
+1023 -0 omake-jumbo-branches/const/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/const/doc/html/omake-contents.html
+5230 -362 omake-jumbo-branches/const/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/const/doc/html/omake-fun-index.html
+356 -0 omake-jumbo-branches/const/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/const/doc/html/omake-obj-index.html
+295 -0 omake-jumbo-branches/const/doc/html/omake-options.html
+219 -0 omake-jumbo-branches/const/doc/html/omake-pervasives.html
+49 -0 omake-jumbo-branches/const/doc/html/omake-references.html
+171 -0 omake-jumbo-branches/const/doc/html/omake-shell.html
+716 -0 omake-jumbo-branches/const/doc/html/omake-system.html
+6 -1 omake-jumbo-branches/const/doc/html/omake-toc.html
+64 -0 omake-jumbo-branches/const/doc/html/osh.html
+436 -398 omake-jumbo-branches/const/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-1
+222 -61 omake-jumbo-branches/const/doc/info/omake-doc.info-10
+98 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-2
+110 -2 omake-jumbo-branches/const/doc/info/omake-doc.info-3
+199 -92 omake-jumbo-branches/const/doc/info/omake-doc.info-4
+175 -24 omake-jumbo-branches/const/doc/info/omake-doc.info-5
+208 -30 omake-jumbo-branches/const/doc/info/omake-doc.info-6
+183 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-7
+128 -0 omake-jumbo-branches/const/doc/info/omake-doc.info-8
+223 -61 omake-jumbo-branches/const/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/const/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/const/doc/ps/omake-doc.ps
+370 -232 omake-jumbo-branches/const/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/const/lib/Pervasives.om
+69 -21 omake-jumbo-branches/const/lib/build/C.om
+4 -1 omake-jumbo-branches/const/lib/build/Common.om
+3 -3 omake-jumbo-branches/const/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/const/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/const/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/const/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/const/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/const/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/const/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/const/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/const/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/const/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/const/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/const/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/const/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/const/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/const/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/const/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/const/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/const/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/const/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/const/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/const/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/const/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/const/src/shell/OMakefile
+1 -8 omake-jumbo-branches/const/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/const/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/const/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/const/test/OMakefile
+433 -246 omake-jumbo-branches/dll/doc/html/omake-all-index.html
+292 -0 omake-jumbo-branches/dll/doc/html/omake-autoconf.html
+1023 -0 omake-jumbo-branches/dll/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/dll/doc/html/omake-contents.html
+5303 -288 omake-jumbo-branches/dll/doc/html/omake-doc.html
+192 -45 omake-jumbo-branches/dll/doc/html/omake-fun-index.html
+356 -0 omake-jumbo-branches/dll/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/dll/doc/html/omake-obj-index.html
+295 -0 omake-jumbo-branches/dll/doc/html/omake-options.html
+219 -0 omake-jumbo-branches/dll/doc/html/omake-pervasives.html
+49 -0 omake-jumbo-branches/dll/doc/html/omake-references.html
+171 -0 omake-jumbo-branches/dll/doc/html/omake-shell.html
+716 -0 omake-jumbo-branches/dll/doc/html/omake-system.html
+6 -1 omake-jumbo-branches/dll/doc/html/omake-toc.html
+64 -0 omake-jumbo-branches/dll/doc/html/osh.html
+436 -398 omake-jumbo-branches/dll/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-1
+222 -61 omake-jumbo-branches/dll/doc/info/omake-doc.info-10
+98 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-2
+110 -2 omake-jumbo-branches/dll/doc/info/omake-doc.info-3
+199 -92 omake-jumbo-branches/dll/doc/info/omake-doc.info-4
+175 -24 omake-jumbo-branches/dll/doc/info/omake-doc.info-5
+208 -30 omake-jumbo-branches/dll/doc/info/omake-doc.info-6
+183 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-7
+128 -0 omake-jumbo-branches/dll/doc/info/omake-doc.info-8
+223 -61 omake-jumbo-branches/dll/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll/doc/ps/omake-doc.ps
+370 -232 omake-jumbo-branches/dll/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/dll/lib/Pervasives.om
+69 -21 omake-jumbo-branches/dll/lib/build/C.om
+4 -1 omake-jumbo-branches/dll/lib/build/Common.om
+3 -3 omake-jumbo-branches/dll/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/dll/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/dll/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/dll/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/dll/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/dll/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/dll/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/dll/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/dll/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/dll/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/dll/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/dll/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/dll/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/dll/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/dll/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/dll/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/dll/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/dll/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/dll/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/dll/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/dll/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/dll/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/dll/src/shell/OMakefile
+1 -8 omake-jumbo-branches/dll/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/dll/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/dll/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/dll/test/OMakefile
+502 -241 omake-jumbo-branches/dll-fuse/doc/html/omake-all-index.html
+490 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-autoconf.html
+1689 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-contents.html
+8624 -287 omake-jumbo-branches/dll-fuse/doc/html/omake-doc.html
+288 -45 omake-jumbo-branches/dll-fuse/doc/html/omake-fun-index.html
+680 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/dll-fuse/doc/html/omake-obj-index.html
+559 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-options.html
+363 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-pervasives.html
+97 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-references.html
+288 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-shell.html
+1193 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-system.html
+15 -0 omake-jumbo-branches/dll-fuse/doc/html/omake-toc.html
+124 -0 omake-jumbo-branches/dll-fuse/doc/html/osh.html
+445 -398 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-1
+225 -61 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-10
+101 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-2
+116 -2 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-3
+208 -92 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-4
+181 -24 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-5
+214 -30 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-6
+189 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-7
+134 -0 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-8
+229 -61 omake-jumbo-branches/dll-fuse/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll-fuse/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll-fuse/doc/ps/omake-doc.ps
+381 -226 omake-jumbo-branches/dll-fuse/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/dll-fuse/lib/Pervasives.om
+73 -21 omake-jumbo-branches/dll-fuse/lib/build/C.om
+4 -1 omake-jumbo-branches/dll-fuse/lib/build/Common.om
+3 -3 omake-jumbo-branches/dll-fuse/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/dll-fuse/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/dll-fuse/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/dll-fuse/src/builtin/omake_builtin_io.ml
+12 -10 omake-jumbo-branches/dll-fuse/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/dll-fuse/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/dll-fuse/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/dll-fuse/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/dll-fuse/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/dll-fuse/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/dll-fuse/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/dll-fuse/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/dll-fuse/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/dll-fuse/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/dll-fuse/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/dll-fuse/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/dll-fuse/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/dll-fuse/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/dll-fuse/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/dll-fuse/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/dll-fuse/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/dll-fuse/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/dll-fuse/src/shell/OMakefile
+1 -8 omake-jumbo-branches/dll-fuse/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/dll-fuse/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/dll-fuse/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/dll-fuse/test/OMakefile
+499 -241 omake-jumbo-branches/dll-odbc/doc/html/omake-all-index.html
+490 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-autoconf.html
+1689 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-contents.html
+8582 -287 omake-jumbo-branches/dll-odbc/doc/html/omake-doc.html
+288 -45 omake-jumbo-branches/dll-odbc/doc/html/omake-fun-index.html
+650 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/dll-odbc/doc/html/omake-obj-index.html
+556 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-options.html
+363 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-pervasives.html
+97 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-references.html
+288 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-shell.html
+1193 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-system.html
+15 -0 omake-jumbo-branches/dll-odbc/doc/html/omake-toc.html
+121 -0 omake-jumbo-branches/dll-odbc/doc/html/osh.html
+445 -398 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-1
+225 -61 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-10
+101 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-2
+116 -2 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-3
+208 -92 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-4
+181 -24 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-5
+214 -30 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-6
+189 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-7
+134 -0 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-8
+229 -61 omake-jumbo-branches/dll-odbc/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll-odbc/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll-odbc/doc/ps/omake-doc.ps
+381 -226 omake-jumbo-branches/dll-odbc/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/dll-odbc/lib/Pervasives.om
+73 -21 omake-jumbo-branches/dll-odbc/lib/build/C.om
+4 -1 omake-jumbo-branches/dll-odbc/lib/build/Common.om
+3 -3 omake-jumbo-branches/dll-odbc/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/dll-odbc/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/dll-odbc/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/dll-odbc/src/builtin/omake_builtin_io.ml
+12 -10 omake-jumbo-branches/dll-odbc/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/dll-odbc/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/dll-odbc/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/dll-odbc/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/dll-odbc/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/dll-odbc/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/dll-odbc/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/dll-odbc/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/dll-odbc/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/dll-odbc/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/dll-odbc/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/dll-odbc/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/dll-odbc/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/dll-odbc/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/dll-odbc/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/dll-odbc/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/dll-odbc/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/dll-odbc/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/dll-odbc/src/shell/OMakefile
+1 -8 omake-jumbo-branches/dll-odbc/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/dll-odbc/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/dll-odbc/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/dll-odbc/test/OMakefile
+481 -246 omake-jumbo-branches/dll-syntax/doc/html/omake-all-index.html
+424 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-autoconf.html
+1467 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-contents.html
+7541 -287 omake-jumbo-branches/dll-syntax/doc/html/omake-doc.html
+192 -45 omake-jumbo-branches/dll-syntax/doc/html/omake-fun-index.html
+599 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/dll-syntax/doc/html/omake-obj-index.html
+493 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-options.html
+315 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-pervasives.html
+88 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-references.html
+249 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-shell.html
+1034 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-system.html
+15 -0 omake-jumbo-branches/dll-syntax/doc/html/omake-toc.html
+109 -0 omake-jumbo-branches/dll-syntax/doc/html/osh.html
+445 -398 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-1
+225 -61 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-10
+101 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-2
+116 -2 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-3
+208 -92 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-4
+181 -24 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-5
+214 -30 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-6
+189 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-7
+134 -0 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-8
+229 -61 omake-jumbo-branches/dll-syntax/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll-syntax/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll-syntax/doc/ps/omake-doc.ps
+381 -226 omake-jumbo-branches/dll-syntax/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/dll-syntax/lib/Pervasives.om
+73 -21 omake-jumbo-branches/dll-syntax/lib/build/C.om
+4 -1 omake-jumbo-branches/dll-syntax/lib/build/Common.om
+3 -3 omake-jumbo-branches/dll-syntax/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/dll-syntax/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/dll-syntax/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/dll-syntax/src/builtin/omake_builtin_io.ml
+12 -10 omake-jumbo-branches/dll-syntax/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/dll-syntax/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/dll-syntax/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/dll-syntax/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/dll-syntax/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/dll-syntax/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/dll-syntax/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/dll-syntax/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/dll-syntax/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/dll-syntax/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/dll-syntax/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/dll-syntax/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/dll-syntax/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/dll-syntax/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/dll-syntax/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/dll-syntax/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/dll-syntax/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/dll-syntax/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/dll-syntax/src/shell/OMakefile
+1 -8 omake-jumbo-branches/dll-syntax/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/dll-syntax/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/dll-syntax/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/dll-syntax/test/OMakefile
+481 -246 omake-jumbo-branches/dll2/doc/html/omake-all-index.html
+424 -0 omake-jumbo-branches/dll2/doc/html/omake-autoconf.html
+1467 -0 omake-jumbo-branches/dll2/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/dll2/doc/html/omake-contents.html
+7523 -287 omake-jumbo-branches/dll2/doc/html/omake-doc.html
+192 -45 omake-jumbo-branches/dll2/doc/html/omake-fun-index.html
+599 -0 omake-jumbo-branches/dll2/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/dll2/doc/html/omake-obj-index.html
+493 -0 omake-jumbo-branches/dll2/doc/html/omake-options.html
+315 -0 omake-jumbo-branches/dll2/doc/html/omake-pervasives.html
+79 -0 omake-jumbo-branches/dll2/doc/html/omake-references.html
+249 -0 omake-jumbo-branches/dll2/doc/html/omake-shell.html
+1034 -0 omake-jumbo-branches/dll2/doc/html/omake-system.html
+9 -0 omake-jumbo-branches/dll2/doc/html/omake-toc.html
+109 -0 omake-jumbo-branches/dll2/doc/html/osh.html
+445 -398 omake-jumbo-branches/dll2/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-1
+225 -61 omake-jumbo-branches/dll2/doc/info/omake-doc.info-10
+101 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-2
+116 -2 omake-jumbo-branches/dll2/doc/info/omake-doc.info-3
+208 -92 omake-jumbo-branches/dll2/doc/info/omake-doc.info-4
+181 -24 omake-jumbo-branches/dll2/doc/info/omake-doc.info-5
+214 -30 omake-jumbo-branches/dll2/doc/info/omake-doc.info-6
+189 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-7
+134 -0 omake-jumbo-branches/dll2/doc/info/omake-doc.info-8
+229 -61 omake-jumbo-branches/dll2/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/dll2/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/dll2/doc/ps/omake-doc.ps
+381 -226 omake-jumbo-branches/dll2/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/dll2/lib/Pervasives.om
+73 -21 omake-jumbo-branches/dll2/lib/build/C.om
+4 -1 omake-jumbo-branches/dll2/lib/build/Common.om
+3 -3 omake-jumbo-branches/dll2/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/dll2/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/dll2/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/dll2/src/builtin/omake_builtin_io.ml
+12 -10 omake-jumbo-branches/dll2/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/dll2/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/dll2/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/dll2/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/dll2/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/dll2/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/dll2/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/dll2/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/dll2/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/dll2/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/dll2/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/dll2/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/dll2/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/dll2/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/dll2/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/dll2/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/dll2/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/dll2/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/dll2/src/shell/OMakefile
+1 -8 omake-jumbo-branches/dll2/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/dll2/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/dll2/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/dll2/test/OMakefile
+508 -241 omake-jumbo-branches/everything/doc/html/omake-all-index.html
+556 -0 omake-jumbo-branches/everything/doc/html/omake-autoconf.html
+1911 -0 omake-jumbo-branches/everything/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/everything/doc/html/omake-contents.html
+9748 -283 omake-jumbo-branches/everything/doc/html/omake-doc.html
+288 -45 omake-jumbo-branches/everything/doc/html/omake-fun-index.html
+761 -0 omake-jumbo-branches/everything/doc/html/omake-grammar.html
+155 -0 omake-jumbo-branches/everything/doc/html/omake-obj-index.html
+625 -0 omake-jumbo-branches/everything/doc/html/omake-options.html
+411 -0 omake-jumbo-branches/everything/doc/html/omake-pervasives.html
+106 -0 omake-jumbo-branches/everything/doc/html/omake-references.html
+327 -0 omake-jumbo-branches/everything/doc/html/omake-shell.html
+1352 -0 omake-jumbo-branches/everything/doc/html/omake-system.html
+18 -0 omake-jumbo-branches/everything/doc/html/omake-toc.html
+139 -0 omake-jumbo-branches/everything/doc/html/osh.html
+448 -398 omake-jumbo-branches/everything/doc/info/omake-doc.info
+8 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-1
+228 -61 omake-jumbo-branches/everything/doc/info/omake-doc.info-10
+104 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-2
+119 -2 omake-jumbo-branches/everything/doc/info/omake-doc.info-3
+435 -4 omake-jumbo-branches/everything/doc/info/omake-doc.info-4
+191 -23 omake-jumbo-branches/everything/doc/info/omake-doc.info-5
+235 -25 omake-jumbo-branches/everything/doc/info/omake-doc.info-6
+196 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-7
+137 -0 omake-jumbo-branches/everything/doc/info/omake-doc.info-8
+253 -61 omake-jumbo-branches/everything/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/everything/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/everything/doc/ps/omake-doc.ps
+1020 -133 omake-jumbo-branches/everything/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/everything/lib/Pervasives.om
+73 -21 omake-jumbo-branches/everything/lib/build/C.om
+4 -1 omake-jumbo-branches/everything/lib/build/Common.om
+3 -3 omake-jumbo-branches/everything/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/everything/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/everything/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/everything/src/builtin/omake_builtin_io.ml
+12 -10 omake-jumbo-branches/everything/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/everything/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/everything/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/everything/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/everything/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/everything/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/everything/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/everything/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/everything/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/everything/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/everything/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/everything/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/everything/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/everything/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/everything/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/everything/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/everything/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/everything/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/everything/src/shell/OMakefile
+1 -8 omake-jumbo-branches/everything/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/everything/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/everything/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/everything/test/OMakefile
+433 -246 omake-jumbo-branches/int/doc/html/omake-all-index.html
+292 -0 omake-jumbo-branches/int/doc/html/omake-autoconf.html
+1023 -0 omake-jumbo-branches/int/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/int/doc/html/omake-contents.html
+5303 -288 omake-jumbo-branches/int/doc/html/omake-doc.html
+192 -45 omake-jumbo-branches/int/doc/html/omake-fun-index.html
+356 -0 omake-jumbo-branches/int/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/int/doc/html/omake-obj-index.html
+295 -0 omake-jumbo-branches/int/doc/html/omake-options.html
+219 -0 omake-jumbo-branches/int/doc/html/omake-pervasives.html
+49 -0 omake-jumbo-branches/int/doc/html/omake-references.html
+171 -0 omake-jumbo-branches/int/doc/html/omake-shell.html
+716 -0 omake-jumbo-branches/int/doc/html/omake-system.html
+6 -1 omake-jumbo-branches/int/doc/html/omake-toc.html
+64 -0 omake-jumbo-branches/int/doc/html/osh.html
+436 -398 omake-jumbo-branches/int/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-1
+222 -61 omake-jumbo-branches/int/doc/info/omake-doc.info-10
+98 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-2
+110 -2 omake-jumbo-branches/int/doc/info/omake-doc.info-3
+199 -92 omake-jumbo-branches/int/doc/info/omake-doc.info-4
+175 -24 omake-jumbo-branches/int/doc/info/omake-doc.info-5
+208 -30 omake-jumbo-branches/int/doc/info/omake-doc.info-6
+183 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-7
+128 -0 omake-jumbo-branches/int/doc/info/omake-doc.info-8
+223 -61 omake-jumbo-branches/int/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/int/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/int/doc/ps/omake-doc.ps
+370 -232 omake-jumbo-branches/int/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/int/lib/Pervasives.om
+69 -21 omake-jumbo-branches/int/lib/build/C.om
+4 -1 omake-jumbo-branches/int/lib/build/Common.om
+3 -3 omake-jumbo-branches/int/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/int/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/int/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/int/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/int/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/int/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/int/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/int/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/int/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/int/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/int/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/int/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/int/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/int/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/int/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/int/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/int/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/int/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/int/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/int/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/int/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/int/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/int/src/shell/OMakefile
+1 -8 omake-jumbo-branches/int/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/int/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/int/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/int/test/OMakefile
+370 -246 omake-jumbo-branches/keyword/doc/html/omake-all-index.html
+97 -0 omake-jumbo-branches/keyword/doc/html/omake-autoconf.html
+360 -0 omake-jumbo-branches/keyword/doc/html/omake-build.html
+324 -0 omake-jumbo-branches/keyword/doc/html/omake-contents.html
+2209 -371 omake-jumbo-branches/keyword/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/keyword/doc/html/omake-fun-index.html
+116 -0 omake-jumbo-branches/keyword/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/keyword/doc/html/omake-obj-index.html
+100 -0 omake-jumbo-branches/keyword/doc/html/omake-options.html
+75 -0 omake-jumbo-branches/keyword/doc/html/omake-pervasives.html
+16 -0 omake-jumbo-branches/keyword/doc/html/omake-references.html
+57 -0 omake-jumbo-branches/keyword/doc/html/omake-shell.html
+239 -0 omake-jumbo-branches/keyword/doc/html/omake-system.html
+3 -3 omake-jumbo-branches/keyword/doc/html/omake-toc.html
+22 -0 omake-jumbo-branches/keyword/doc/html/osh.html
+427 -425 omake-jumbo-branches/keyword/doc/info/omake-doc.info
+2 -2 omake-jumbo-branches/keyword/doc/info/omake-doc.info-1
+216 -62 omake-jumbo-branches/keyword/doc/info/omake-doc.info-10
+92 -106 omake-jumbo-branches/keyword/doc/info/omake-doc.info-2
+104 -85 omake-jumbo-branches/keyword/doc/info/omake-doc.info-3
+190 -237 omake-jumbo-branches/keyword/doc/info/omake-doc.info-4
+169 -181 omake-jumbo-branches/keyword/doc/info/omake-doc.info-5
+199 -207 omake-jumbo-branches/keyword/doc/info/omake-doc.info-6
+177 -119 omake-jumbo-branches/keyword/doc/info/omake-doc.info-7
+122 -151 omake-jumbo-branches/keyword/doc/info/omake-doc.info-8
+217 -212 omake-jumbo-branches/keyword/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/keyword/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/keyword/doc/ps/omake-doc.ps
+361 -239 omake-jumbo-branches/keyword/doc/txt/omake-doc.txt
+9 -3 omake-jumbo-branches/keyword/lib/Pervasives.om
+69 -21 omake-jumbo-branches/keyword/lib/build/C.om
+4 -1 omake-jumbo-branches/keyword/lib/build/Common.om
+3 -3 omake-jumbo-branches/keyword/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/keyword/lib/build/OCaml.om
+1 -1 omake-jumbo-branches/keyword/src/Makefile
+1 -1 omake-jumbo-branches/keyword/src/Makefile.nt
+11 -5 omake-jumbo-branches/keyword/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/keyword/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/keyword/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/keyword/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/keyword/src/builtin/omake_builtin_test.ml
+74 -53 omake-jumbo-branches/keyword/src/env/omake_env.ml
+12 -21 omake-jumbo-branches/keyword/src/env/omake_env.mli
+28 -31 omake-jumbo-branches/keyword/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/keyword/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/keyword/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/keyword/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/keyword/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/keyword/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/keyword/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/keyword/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/keyword/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/keyword/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/keyword/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/keyword/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/keyword/src/shell/OMakefile
+1 -8 omake-jumbo-branches/keyword/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/keyword/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/keyword/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/keyword/test/OMakefile
Deleted omake-jumbo-branches/original/
+460 -246 omake-jumbo-branches/parse/doc/html/omake-all-index.html
+358 -0 omake-jumbo-branches/parse/doc/html/omake-autoconf.html
+1245 -0 omake-jumbo-branches/parse/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/parse/doc/html/omake-contents.html
+6453 -362 omake-jumbo-branches/parse/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/parse/doc/html/omake-fun-index.html
+518 -0 omake-jumbo-branches/parse/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/parse/doc/html/omake-obj-index.html
+427 -0 omake-jumbo-branches/parse/doc/html/omake-options.html
+267 -0 omake-jumbo-branches/parse/doc/html/omake-pervasives.html
+70 -0 omake-jumbo-branches/parse/doc/html/omake-references.html
+210 -0 omake-jumbo-branches/parse/doc/html/omake-shell.html
+875 -0 omake-jumbo-branches/parse/doc/html/omake-system.html
+6 -1 omake-jumbo-branches/parse/doc/html/omake-toc.html
+94 -0 omake-jumbo-branches/parse/doc/html/osh.html
+445 -398 omake-jumbo-branches/parse/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-1
+225 -61 omake-jumbo-branches/parse/doc/info/omake-doc.info-10
+101 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-2
+116 -2 omake-jumbo-branches/parse/doc/info/omake-doc.info-3
+208 -92 omake-jumbo-branches/parse/doc/info/omake-doc.info-4
+181 -24 omake-jumbo-branches/parse/doc/info/omake-doc.info-5
+214 -30 omake-jumbo-branches/parse/doc/info/omake-doc.info-6
+189 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-7
+134 -0 omake-jumbo-branches/parse/doc/info/omake-doc.info-8
+229 -61 omake-jumbo-branches/parse/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/parse/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/parse/doc/ps/omake-doc.ps
+381 -226 omake-jumbo-branches/parse/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/parse/lib/Pervasives.om
+69 -21 omake-jumbo-branches/parse/lib/build/C.om
+4 -1 omake-jumbo-branches/parse/lib/build/Common.om
+3 -3 omake-jumbo-branches/parse/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/parse/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/parse/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/parse/src/builtin/omake_builtin_io.ml
+12 -10 omake-jumbo-branches/parse/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/parse/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/parse/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/parse/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/parse/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/parse/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/parse/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/parse/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/parse/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/parse/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/parse/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/parse/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/parse/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/parse/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/parse/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/parse/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/parse/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/parse/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/parse/src/shell/OMakefile
+1 -8 omake-jumbo-branches/parse/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/parse/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/parse/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/parse/test/OMakefile
+370 -246 omake-jumbo-branches/syntax/doc/html/omake-all-index.html
+97 -0 omake-jumbo-branches/syntax/doc/html/omake-autoconf.html
+360 -0 omake-jumbo-branches/syntax/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/syntax/doc/html/omake-contents.html
+2239 -370 omake-jumbo-branches/syntax/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/syntax/doc/html/omake-fun-index.html
+116 -0 omake-jumbo-branches/syntax/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/syntax/doc/html/omake-obj-index.html
+100 -0 omake-jumbo-branches/syntax/doc/html/omake-options.html
+75 -0 omake-jumbo-branches/syntax/doc/html/omake-pervasives.html
+37 -0 omake-jumbo-branches/syntax/doc/html/omake-references.html
+57 -0 omake-jumbo-branches/syntax/doc/html/omake-shell.html
+239 -0 omake-jumbo-branches/syntax/doc/html/omake-system.html
+6 -2 omake-jumbo-branches/syntax/doc/html/omake-toc.html
+22 -0 omake-jumbo-branches/syntax/doc/html/osh.html
+427 -425 omake-jumbo-branches/syntax/doc/info/omake-doc.info
+2 -2 omake-jumbo-branches/syntax/doc/info/omake-doc.info-1
+216 -62 omake-jumbo-branches/syntax/doc/info/omake-doc.info-10
+92 -106 omake-jumbo-branches/syntax/doc/info/omake-doc.info-2
+104 -85 omake-jumbo-branches/syntax/doc/info/omake-doc.info-3
+190 -237 omake-jumbo-branches/syntax/doc/info/omake-doc.info-4
+169 -181 omake-jumbo-branches/syntax/doc/info/omake-doc.info-5
+199 -207 omake-jumbo-branches/syntax/doc/info/omake-doc.info-6
+177 -119 omake-jumbo-branches/syntax/doc/info/omake-doc.info-7
+122 -151 omake-jumbo-branches/syntax/doc/info/omake-doc.info-8
+217 -212 omake-jumbo-branches/syntax/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/syntax/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/syntax/doc/ps/omake-doc.ps
+361 -239 omake-jumbo-branches/syntax/doc/txt/omake-doc.txt
+12 -6 omake-jumbo-branches/syntax/lib/Pervasives.om
+69 -21 omake-jumbo-branches/syntax/lib/build/C.om
+4 -1 omake-jumbo-branches/syntax/lib/build/Common.om
+3 -3 omake-jumbo-branches/syntax/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/syntax/lib/build/OCaml.om
+4 -0 omake-jumbo-branches/syntax/src/Makefile.nt
+11 -5 omake-jumbo-branches/syntax/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/syntax/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/syntax/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/syntax/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/syntax/src/builtin/omake_builtin_test.ml
+74 -53 omake-jumbo-branches/syntax/src/env/omake_env.ml
+12 -21 omake-jumbo-branches/syntax/src/env/omake_env.mli
+28 -31 omake-jumbo-branches/syntax/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/syntax/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/syntax/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/syntax/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/syntax/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/syntax/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/syntax/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/syntax/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/syntax/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/syntax/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/syntax/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/syntax/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/syntax/src/shell/OMakefile
+1 -8 omake-jumbo-branches/syntax/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/syntax/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/syntax/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/syntax/test/OMakefile
+370 -246 omake-jumbo-branches/var2/doc/html/omake-all-index.html
+97 -0 omake-jumbo-branches/var2/doc/html/omake-autoconf.html
+360 -0 omake-jumbo-branches/var2/doc/html/omake-build.html
+324 -0 omake-jumbo-branches/var2/doc/html/omake-contents.html
+2209 -371 omake-jumbo-branches/var2/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/var2/doc/html/omake-fun-index.html
+116 -0 omake-jumbo-branches/var2/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/var2/doc/html/omake-obj-index.html
+100 -0 omake-jumbo-branches/var2/doc/html/omake-options.html
+75 -0 omake-jumbo-branches/var2/doc/html/omake-pervasives.html
+16 -0 omake-jumbo-branches/var2/doc/html/omake-references.html
+57 -0 omake-jumbo-branches/var2/doc/html/omake-shell.html
+239 -0 omake-jumbo-branches/var2/doc/html/omake-system.html
+3 -3 omake-jumbo-branches/var2/doc/html/omake-toc.html
+22 -0 omake-jumbo-branches/var2/doc/html/osh.html
+427 -425 omake-jumbo-branches/var2/doc/info/omake-doc.info
+2 -2 omake-jumbo-branches/var2/doc/info/omake-doc.info-1
+216 -62 omake-jumbo-branches/var2/doc/info/omake-doc.info-10
+92 -106 omake-jumbo-branches/var2/doc/info/omake-doc.info-2
+104 -85 omake-jumbo-branches/var2/doc/info/omake-doc.info-3
+190 -237 omake-jumbo-branches/var2/doc/info/omake-doc.info-4
+169 -181 omake-jumbo-branches/var2/doc/info/omake-doc.info-5
+199 -207 omake-jumbo-branches/var2/doc/info/omake-doc.info-6
+177 -119 omake-jumbo-branches/var2/doc/info/omake-doc.info-7
+122 -151 omake-jumbo-branches/var2/doc/info/omake-doc.info-8
+217 -212 omake-jumbo-branches/var2/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/var2/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/var2/doc/ps/omake-doc.ps
+361 -239 omake-jumbo-branches/var2/doc/txt/omake-doc.txt
+9 -3 omake-jumbo-branches/var2/lib/Pervasives.om
+69 -21 omake-jumbo-branches/var2/lib/build/C.om
+4 -1 omake-jumbo-branches/var2/lib/build/Common.om
+3 -3 omake-jumbo-branches/var2/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/var2/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/var2/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/var2/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/var2/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/var2/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/var2/src/builtin/omake_builtin_test.ml
+74 -53 omake-jumbo-branches/var2/src/env/omake_env.ml
+12 -21 omake-jumbo-branches/var2/src/env/omake_env.mli
+28 -31 omake-jumbo-branches/var2/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/var2/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/var2/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/var2/src/ir/omake_ir_print.ml
+1 -1 omake-jumbo-branches/var2/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/var2/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/var2/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/var2/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/var2/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/var2/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/var2/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/var2/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/var2/src/shell/OMakefile
+1 -8 omake-jumbo-branches/var2/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/var2/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/var2/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/var2/test/OMakefile
+412 -246 omake-jumbo-branches/var3/doc/html/omake-all-index.html
+226 -0 omake-jumbo-branches/var3/doc/html/omake-autoconf.html
+801 -0 omake-jumbo-branches/var3/doc/html/omake-build.html
+327 -0 omake-jumbo-branches/var3/doc/html/omake-contents.html
+4220 -362 omake-jumbo-branches/var3/doc/html/omake-doc.html
+120 -119 omake-jumbo-branches/var3/doc/html/omake-fun-index.html
+275 -0 omake-jumbo-branches/var3/doc/html/omake-grammar.html
+4 -4 omake-jumbo-branches/var3/doc/html/omake-obj-index.html
+229 -0 omake-jumbo-branches/var3/doc/html/omake-options.html
+171 -0 omake-jumbo-branches/var3/doc/html/omake-pervasives.html
+37 -0 omake-jumbo-branches/var3/doc/html/omake-references.html
+132 -0 omake-jumbo-branches/var3/doc/html/omake-shell.html
+557 -0 omake-jumbo-branches/var3/doc/html/omake-system.html
+6 -1 omake-jumbo-branches/var3/doc/html/omake-toc.html
+49 -0 omake-jumbo-branches/var3/doc/html/osh.html
+436 -398 omake-jumbo-branches/var3/doc/info/omake-doc.info
+5 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-1
+222 -61 omake-jumbo-branches/var3/doc/info/omake-doc.info-10
+98 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-2
+110 -2 omake-jumbo-branches/var3/doc/info/omake-doc.info-3
+199 -92 omake-jumbo-branches/var3/doc/info/omake-doc.info-4
+175 -24 omake-jumbo-branches/var3/doc/info/omake-doc.info-5
+208 -30 omake-jumbo-branches/var3/doc/info/omake-doc.info-6
+183 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-7
+128 -0 omake-jumbo-branches/var3/doc/info/omake-doc.info-8
+223 -61 omake-jumbo-branches/var3/doc/info/omake-doc.info-9
Binary omake-jumbo-branches/var3/doc/ps/omake-doc.pdf
Binary omake-jumbo-branches/var3/doc/ps/omake-doc.ps
+370 -232 omake-jumbo-branches/var3/doc/txt/omake-doc.txt
+8 -0 omake-jumbo-branches/var3/lib/Pervasives.om
+69 -21 omake-jumbo-branches/var3/lib/build/C.om
+4 -1 omake-jumbo-branches/var3/lib/build/Common.om
+3 -3 omake-jumbo-branches/var3/lib/build/LaTeX.om
+36 -14 omake-jumbo-branches/var3/lib/build/OCaml.om
+11 -5 omake-jumbo-branches/var3/src/build/omake_build.ml
+21 -0 omake-jumbo-branches/var3/src/builtin/omake_builtin_io.ml
+12 -9 omake-jumbo-branches/var3/src/builtin/omake_builtin_io_fun.ml
+1 -1 omake-jumbo-branches/var3/src/builtin/omake_builtin_target.ml
+11 -3 omake-jumbo-branches/var3/src/builtin/omake_builtin_test.ml
+41 -11 omake-jumbo-branches/var3/src/env/omake_env.ml
+6 -4 omake-jumbo-branches/var3/src/env/omake_env.mli
+10 -1 omake-jumbo-branches/var3/src/eval/omake_eval.ml
+6 -6 omake-jumbo-branches/var3/src/eval/omake_eval.mli
+7 -1 omake-jumbo-branches/var3/src/exec/omake_exec_notify.ml
+2 -2 omake-jumbo-branches/var3/src/ir/omake_ir_print.ml
+0 -4 omake-jumbo-branches/var3/src/ir/omake_node_sig.ml
+1 -1 omake-jumbo-branches/var3/src/ir/omake_state.ml
+7 -7 omake-jumbo-branches/var3/src/ir/omake_symbol.ml
+9 -1 omake-jumbo-branches/var3/src/ir/omake_value_print.ml
+1 -0 omake-jumbo-branches/var3/src/ir/omake_value_print.mli
+7 -7 omake-jumbo-branches/var3/src/ir/omake_var.ml
+7 -7 omake-jumbo-branches/var3/src/ir/omake_var.mli
+4 -0 omake-jumbo-branches/var3/src/main/omake_main.ml
+3 -3 omake-jumbo-branches/var3/src/main/omake_shell.ml
+1 -1 omake-jumbo-branches/var3/src/shell/OMakefile
+1 -8 omake-jumbo-branches/var3/src/shell/omake_shell_sys.mli
+0 -5 omake-jumbo-branches/var3/src/shell/omake_shell_sys_unix.ml
+13 -3 omake-jumbo-branches/var3/src/shell/omake_shell_sys_win32.ml
+12 -4 omake-jumbo-branches/var3/test/OMakefile

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-30 11:32:57 -0700 (Mon, 30 Jul 2007)
Revision: 11480
Log message:

      It appears to work. Next, time to port this to ocaml 3.10

Changes  Path
+6 -4 omake-research/omake-distrib/src/main/omake_main.ml
+2 -2 omake-research/omake-distrib/src/main/omake_main_args.ml
+29 -15 omake-research/omake-distrib/src/shell/omake_shell_servers.ml
+2 -1 omake-research/omake-distrib/src/shell/omake_shell_sys_unix.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-30 12:44:11 -0700 (Mon, 30 Jul 2007)
Revision: 11482
Log message:

      Fixed a few things to deal with a new libmojave

Changes  Path
+6 -1 omake-research/omake-distrib/src/exec/omake_exec_notify.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-30 14:25:53 -0700 (Mon, 30 Jul 2007)
Revision: 11483
Log message:

      Added the hack to make the execserver try to thread ALL the jobs rather than just those on localhost, so our scheduler actually gets the proper number of requests

Changes  Path
+2 -0 omake-research/omake-distrib/src/ir/omake_options.ml
+1 -0 omake-research/omake-distrib/src/ir/omake_options.mli
+2 -2 omake-research/omake-distrib/src/main/omake_main.ml
+9 -5 omake-research/omake-distrib/src/shell/omake_shell_servers.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-30 15:05:47 -0700 (Mon, 30 Jul 2007)
Revision: 11484
Log message:

      Err, these were missing

Changes  Path
Added omake-research/omake-distrib/src/aux/nfs_flushr.ml
Added omake-research/omake-distrib/src/aux/nfs_flushw.ml

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-30 15:48:17 -0700 (Mon, 30 Jul 2007)
Revision: 11485
Log message:

      Possibly an error in my test.

Changes  Path
+1 -1 omake-research/file-consistency/filetestlib.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-31 10:42:56 -0700 (Tue, 31 Jul 2007)
Revision: 11493
Log message:

      Merged the "SharedCLibrary" mechanism that I've added on the 0.9.8.x branch
     with Jason's DynamicCLibaray mechanism. The merged functionality still uses
     the SharedCLibrary name schema and is compatible with the 0.9.8.x branch,
     except that the *Copy and *Install functions will now take a keyword "version"
     argument (defaults to empty, which would cause the functions to only build the
     unversioned DLLs). The version argument will be ignored on Windows.
     
     Jason, could you please propagate this to child branches? Thanks!
     
     P.S. There were a number of things that appear broken  - possibly due to
     incomplete "jumbo-branch" propagation (for example, many configure test leave
     their temporary outputs around). I did not try to investigate those - it will
     probably be easier to fix them as "jumbo patches" land.

Changes  Path
+4 -4 omake-jumbo-branches/dll2/contrib/gtk/OMakefile
+53 -96 omake-jumbo-branches/dll2/lib/build/C.om
+0 -2 omake-jumbo-branches/dll2/lib/build/Common.om
+4 -4 omake-jumbo-branches/dll2/lib/build/Dll.om
Properties omake-jumbo-branches/dll2/test/dll/
Added omake-jumbo-branches/dll2/test/dll/Test1/
+2 -2 omake-jumbo-branches/dll2/test/dll/Test1/OMakefile
Added omake-jumbo-branches/dll2/test/dll/Test2/
+2 -2 omake-jumbo-branches/dll2/test/dll/Test2/OMakefile
Deleted omake-jumbo-branches/dll2/test/dll/callback/
Deleted omake-jumbo-branches/dll2/test/dll/simple/
Properties omake-jumbo-branches/dll2/test/keyword/
Deleted omake-jumbo-branches/dll2/test/keyword/result.log

Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-07-31 12:01:40 -0700 (Tue, 31 Jul 2007)
Revision: 11494
Log message:

      Most things working. Still have the problems with libmojave and hevea, but it works on the test setup.

Changes  Path
+2 -2 omake-research/omake-distrib/src/aux/build.sh
+2 -50 omake-research/omake-distrib/src/aux/nfs_flushr.ml
+2 -50 omake-research/omake-distrib/src/aux/nfs_flushw.ml
+68 -27 omake-research/omake-distrib/src/build/omake_build.ml
+1 -0 omake-research/omake-distrib/src/build/omake_build.mli
+2 -0 omake-research/omake-distrib/src/main/omake_main_args.ml
+4 -1 omake-research/omake-distrib/src/shell/omake_shell_servers.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-31 13:10:41 -0700 (Tue, 31 Jul 2007)
Revision: 11496
Log message:

      [Bug 535] Added a hack to address the "Sys.Break does not get raised inside C
     blocking sections" problem (see
     http://caml.inria.fr/pub/ml-archives/caml-list/2007/07/3662ad69f77253674f580b174c85dfbb.en.html
     for detail).
     
     My "solution" is that when threads are enabled, the Lm_notify.next_event would
     run in a child thread, while the master thread periodically (currently - at
     0.1s intervals) checks whether it's done. If Ctrl-C is pressed, OCaml will
     interrupt the master thread with Sys.Break, which is what we want.
     
     Note that simply having the master thread wait for the child one does not work
     - we need the master thread to execute caml_leave_blocking_section()
     regularly!
     
     P.S. I have only tested this on Unix with threads enabled, will test on
     Windows next.

Changes  Path
+1 -0 libmojave/stdlib/lm_thread.ml
+1 -0 libmojave/stdlib/lm_thread_core_null.ml
+25 -0 libmojave/stdlib/lm_thread_core_system.ml
+9 -0 libmojave/stdlib/lm_thread_sig.ml
+1 -1 omake-branches/0.9.8.x/src/exec/omake_exec_notify.ml

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-31 14:42:53 -0700 (Tue, 31 Jul 2007)
Revision: 11500
Log message:

      Fixed a problem with static environment being wiped out by hoisting.

Changes  Path
+1 -1 omake-branches/0.9.8.x/src/env/omake_env.ml
+2 -0 omake-branches/0.9.8.x/test/object/Test09
Copied omake-branches/0.9.8.x/test/object/Test13 (from rev 11479, omake-branches/0.9.8.x/test/object/Test09)
+3 -1 omake-branches/0.9.8.x/test/object/Test13 (from rev 11479, omake-branches/0.9.8.x/test/object/Test09)

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-31 14:53:57 -0700 (Tue, 31 Jul 2007)
Revision: 11501
Log message:

      This is a variation of the Test8, where the variable being tested is a
     function argument (in "protected" scope), not a global one. In this case, we
     still get "Error: expected new, got old" with 0.9.8.x :-(

Changes  Path
Added omake-branches/0.9.8.x/test/object/Test14

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-31 15:12:41 -0700 (Tue, 31 Jul 2007)
Revision: 11503
Log message:

      Made it a bit more obvious what this is about.

Changes  Path
+2 -1 omake-branches/0.9.8.x/test/object/Test14

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-31 16:36:53 -0700 (Tue, 31 Jul 2007)
Revision: 11504
Log message:

      Solves the "this diambiguation" problem (destinguishing between the "this"
     variables that came from the original environment and should stay there and the
     "this" variables that are object fields and should be hoisted). The
     implementation is probably inefficient, will try to optimize it next.
     
     P.S. test/object/Test14 still fails as there is a clash between the map
     variable and the "map" field of the Array object. A similar
     test/object/Test15, which uses "M" instead of "map" now succeeds.

Changes  Path
+43 -20 omake-branches/0.9.8.x/src/env/omake_env.ml
+1 -1 omake-branches/0.9.8.x/src/eval/omake_eval.ml
Copied omake-branches/0.9.8.x/test/object/Test15 (from rev 11503, omake-branches/0.9.8.x/test/object/Test14)
+5 -4 omake-branches/0.9.8.x/test/object/Test15 (from rev 11503, omake-branches/0.9.8.x/test/object/Test14)

Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-07-31 16:42:31 -0700 (Tue, 31 Jul 2007)
Revision: 11505
Log message:

      The environment part of the PathVar (which used to contain the original value
     of the object) is never actually needed, so deleting it from the type.

Changes  Path
+4 -4 omake-branches/0.9.8.x/src/env/omake_env.ml
+4 -4 omake-branches/0.9.8.x/src/eval/omake_eval.ml
+1 -1 omake-branches/0.9.8.x/src/ir/omake_value_print.ml
+1 -1 omake-branches/0.9.8.x/src/ir/omake_value_type.ml