X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2FmatitaTypes.ml;h=23d0d832f238947adef0cb875c86b65ddd750af4;hb=9ff984b29ac963eef2f79521ce9dd7cbb9ae2c59;hp=791713e56a4b5e13f2fa302cf7c87dac52796c6d;hpb=26bd030af58a7f4a5dff3c41ad5431e31e851d3e;p=helm.git diff --git a/matita/matitaTypes.ml b/matita/matitaTypes.ml index 791713e56..23d0d832f 100644 --- a/matita/matitaTypes.ml +++ b/matita/matitaTypes.ml @@ -36,6 +36,7 @@ type abouts = | `Current_proof | `Us | `Coercions + | `CoercionsFull ] type mathViewer_entry = @@ -54,7 +55,8 @@ let string_of_entry = function | `About `Blank -> "about:blank" | `About `Current_proof -> "about:proof" | `About `Us -> "about:us" - | `About `Coercions -> "about:coercions" + | `About `Coercions -> "about:coercions?tred=true" + | `About `CoercionsFull -> "about:coercions" | `Check _ -> "check:" | `Cic (_, _) -> "term:" | `Development d -> "devel:/" ^ d @@ -77,7 +79,8 @@ let entry_of_string = function | "about:blank" -> `About `Blank | "about:proof" -> `About `Current_proof | "about:us" -> `About `Us - | "about:coercions" -> `About `Coercions + | "about:coercions?tred=true" -> `About `Coercions + | "about:coercions" -> `About `CoercionsFull | _ -> (* only about entries supported ATM *) raise (Invalid_argument "entry_of_string")