Skip to content

Commit ce4ead3

Browse files
committed
snapshot
1 parent 4cf41c4 commit ce4ead3

File tree

3 files changed

+282
-286
lines changed

3 files changed

+282
-286
lines changed

lib/4.06.1/unstable/js_compiler.ml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -411084,13 +411084,8 @@ let pp (sourcefile : string) =
411084411084
let comm =
411085411085
if Sys.win32 then cmd_windows_quote pp sourcefile tmpfile
411086411086
else cmd_nix_quote pp sourcefile tmpfile
411087-
in
411088-
if !Clflags.verbose then begin
411089-
prerr_string "+ ";
411090-
prerr_endline comm;
411091-
prerr_newline ()
411092-
end ;
411093-
if Sys.command comm <> 0 then begin
411087+
in
411088+
if Ccomp.command comm <> 0 then begin
411094411089
clean tmpfile;
411095411090
raise Pp_error
411096411091
end;

lib/4.06.1/unstable/js_refmt_compiler.ml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -571180,13 +571180,8 @@ let pp (sourcefile : string) =
571180571180
let comm =
571181571181
if Sys.win32 then cmd_windows_quote pp sourcefile tmpfile
571182571182
else cmd_nix_quote pp sourcefile tmpfile
571183-
in
571184-
if !Clflags.verbose then begin
571185-
prerr_string "+ ";
571186-
prerr_endline comm;
571187-
prerr_newline ()
571188-
end ;
571189-
if Sys.command comm <> 0 then begin
571183+
in
571184+
if Ccomp.command comm <> 0 then begin
571190571185
clean tmpfile;
571191571186
raise Pp_error
571192571187
end;

0 commit comments

Comments
 (0)