OCamlPro / ocp-indent

Indentation tool for OCaml, to be used from editors like Emacs and Vim.
http://www.typerex.org/ocp-indent.html
Other
200 stars 63 forks source link

Local exceptions not properly supported #240

Closed mmottl closed 5 years ago

mmottl commented 7 years ago

The following code block in foo.ml

let f () =
  let exception Foo in
  raise Foo

is indented by ocp-indent foo.ml as:

let f () =
  let exception Foo in
raise Foo
hcarty commented 7 years ago

This was fixed in #235 but no release has been made yet. You can pin to the rewind branch until a release is made.