michael@112: Index: haxe/doc/install.ml michael@112: --- haxe/doc/install.ml.orig 2007-12-16 14:37:46 +0100 michael@112: +++ haxe/doc/install.ml 2008-05-30 14:06:45 +0200 michael@112: @@ -144,10 +144,10 @@ michael@112: in michael@112: let startdir = Sys.getcwd() in michael@112: try michael@112: - download(); michael@112: + (* download(); *) michael@112: compile(); michael@112: Sys.chdir startdir; michael@112: with michael@112: Failure msg -> michael@112: Sys.chdir startdir; michael@112: - prerr_endline msg; exit 1 michael@112: \ No newline at end of file michael@112: + prerr_endline msg; exit 1 michael@113: Index: haxe/parser.ml michael@113: --- haxe/parser.ml.orig 2008-11-25 21:20:36.000000000 +0100 michael@113: +++ haxe/parser.ml 2009-02-25 13:44:52.464412227 +0100 michael@113: @@ -299,9 +299,9 @@ michael@113: } michael@113: michael@113: and parse_type_path_or_const = parser michael@113: - | [< '(Const (String s),_); >] -> TPConst (String s) michael@113: - | [< '(Const (Int i),_); >] -> TPConst (Int i) michael@113: - | [< '(Const (Float f),_); >] -> TPConst (Float f) michael@113: + | [< '(Const (String s),_); placeholder1 >] -> TPConst (String s) michael@113: + | [< '(Const (Int i),_); placeholder2 >] -> TPConst (Int i) michael@113: + | [< '(Const (Float f),_); placeholder3 >] -> TPConst (Float f) michael@113: | [< t = parse_type_path >] -> TPType t michael@113: michael@113: and parse_type_path_next t = parser