Skip to content

Commit

Permalink
Revert "[server] don't merge output lines (HaxeFoundation#11459)"
Browse files Browse the repository at this point in the history
This reverts commit c9e9459.
  • Loading branch information
kLabz committed Jan 15, 2024
1 parent 357a089 commit ec673e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/server.ml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ module Communication = struct
let create_pipe sctx write =
let rec self = {
write_out = (fun s ->
write ("\x01" ^ String.concat "\n\x01" (ExtString.String.nsplit s "\n") ^ "\n")
write ("\x01" ^ String.concat "\x01" (ExtString.String.nsplit s "\n") ^ "\n")
);
write_err = (fun s ->
write s
Expand Down

0 comments on commit ec673e1

Please sign in to comment.