Skip to content

Commit

Permalink
quse: missing reraise
Browse files Browse the repository at this point in the history
  • Loading branch information
digama0 authored and mn200 committed Dec 11, 2024
1 parent 8140422 commit f34bded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools-poly/poly/quse.sml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fun useScript fname =
val istream = TextIO.openIn fname
val reader = HolParser.streamToReader true fname istream
val _ = use_reader fname reader
handle e => (TextIO.closeIn istream; raise e)
handle e => (TextIO.closeIn istream; PolyML.Exception.reraise e)
in
TextIO.closeIn istream
end
Expand Down

0 comments on commit f34bded

Please sign in to comment.