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.
1 parent ce92495 commit 01ae643Copy full SHA for 01ae643
CHANGES.md
@@ -7,6 +7,7 @@ unreleased
7
- Add `-unboxed-types` and `-no-unboxed-types` as ocaml ignored flags (#1795, fixes #1794)
8
+ editor modes
9
- vim: fix python-3.12 syntax warnings in merlin.py (#1798)
10
+ - Fix merlinpp not removing temporary files (#1801, partly fixes #1802)
11
12
merlin 5.1
13
==========
src/ocaml/driver/pparse.ml
@@ -180,6 +180,7 @@ let apply_pp ~workdir ~filename ~source ~pp =
180
let ic = open_in_bin fn_out in
181
let result = Misc.string_of_file ic in
182
close_in ic;
183
+ Misc.remove_file fn_out;
184
Ok result
185
186
let decode_potential_ast source =
0 commit comments