Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-05-12 16:23:25 -0700 (Thu, 12 May 2005)
Revision: 990
Log message:
Fixed the problem with things like
echo ""
being a syntax error. The issue was that the shell was using multi-quoting,
so a string like ""Hello "xxx" world"" would be a single string with a
quoted "xxx" in it. I've removed that feature.
Added back the $(replacesufixes ...) in OCamlScannerDeps.
Changes | Path |
+2 -0 | omake/OMakeroot.src.in |
+1 -1 | omake/src/ir/omake_node.ml |
+7 -3 | omake/src/shell/omake_shell_lex.mll |