X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2FmatitaTypes.ml;h=5e2e98062b4e2c0148783d22d1da9e780e01a64a;hb=be7c458d2ffc4669891f7c8f3e4e80399d4157f7;hp=13543dbb64d081f4afd1a1a7d2f599a956a11179;hpb=55b82bd235d82ff7f0a40d980effe1efde1f5073;p=helm.git diff --git a/helm/software/matita/matitaTypes.ml b/helm/software/matita/matitaTypes.ml index 13543dbb6..5e2e98062 100644 --- a/helm/software/matita/matitaTypes.ml +++ b/helm/software/matita/matitaTypes.ml @@ -35,6 +35,7 @@ type abouts = [ `Blank | `Current_proof | `Us + | `Coercions ] type mathViewer_entry = @@ -50,6 +51,7 @@ let string_of_entry = function | `About `Blank -> "about:blank" | `About `Current_proof -> "about:proof" | `About `Us -> "about:us" + | `About `Coercions -> "about:coercions" | `Check _ -> "check:" | `Cic (_, _) -> "term:" | `Dir uri -> uri @@ -60,6 +62,7 @@ let entry_of_string = function | "about:blank" -> `About `Blank | "about:proof" -> `About `Current_proof | "about:us" -> `About `Us + | "about:coercions" -> `About `Coercions | _ -> (* only about entries supported ATM *) raise (Invalid_argument "entry_of_string")