From: Claudio Sacerdoti Coen Date: Fri, 3 Jun 2011 08:32:32 +0000 (+0000) Subject: Avoid killing the main gui thread. X-Git-Tag: make_still_working~2468 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=a8648828c3546e3ad7cf474ba4a87c2faa245b9f;hp=7aeec317f639936095e10f88cc0b2710262082d0;p=helm.git Avoid killing the main gui thread. --- diff --git a/matita/matita/matitaExcPp.ml b/matita/matita/matitaExcPp.ml index 5b9cb4347..da46ed88c 100644 --- a/matita/matita/matitaExcPp.ml +++ b/matita/matita/matitaExcPp.ml @@ -112,8 +112,9 @@ let compact_disambiguation_errors all_passes errorll = choices ;; -let rec to_string = - function +let rec to_string exn = + try + (match exn with HExtlib.Localized (floc,exn) -> let _,msg = to_string exn in let (x, y) = HExtlib.loc_of_floc floc in @@ -139,6 +140,8 @@ let rec to_string = None, "NRefiner uncertain: " ^ snd (Lazy.force msg) | NCicMetaSubst.Uncertain msg -> None, "NCicMetaSubst uncertain: " ^ Lazy.force msg + | NCicMetaSubst.MetaSubstFailure msg -> + None, "NCicMetaSubst failure: " ^ Lazy.force msg | NCicTypeChecker.TypeCheckerFailure msg -> None, "NTypeChecker failure: " ^ Lazy.force msg | NCicTypeChecker.AssertFailure msg -> @@ -236,5 +239,6 @@ let rec to_string = loc, "********** DISAMBIGUATION ERRORS: **********\n" ^ explain (aux errorll) - | exn -> None, ("Uncaught exception: " ^ Printexc.to_string exn ^ Printexc.get_backtrace ()) - + | exn -> None, ("Uncaught exception: " ^ Printexc.to_string exn ^ Printexc.get_backtrace ())) + with exn -> + None, ("Exception raised during pretty-printing of an exception: " ^ Printexc.to_string exn ^ Printexc.get_backtrace ())