We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 05e90d8 + 1c43591 commit 8404f96Copy full SHA for 8404f96
CHANGES.md
@@ -9,6 +9,7 @@ merlin NEXT_VERSION
9
- Add a query_num field to the `ocamlmerlin` responses to detect server crashes (#1716)
10
+ editor modes
11
- vim: load merlin under the ocamlinterface and ocamllex filetypes (#1340)
12
+ - Fix merlinpp not using binary file open (#1725, fixes #1724)
13
14
merlin 4.13
15
===========
src/ocaml/driver/pparse.ml
@@ -177,7 +177,7 @@ let apply_pp ~workdir ~filename ~source ~pp =
177
end else if not (Sys.file_exists fn_out) then
178
Error (WrongMagic comm)
179
else
180
- let ic = open_in fn_out in
+ let ic = open_in_bin fn_out in
181
let result = Misc.string_of_file ic in
182
close_in ic;
183
Ok result
0 commit comments