]> matita.cs.unibo.it Git - helm.git/commitdiff
associativity of -> fixed
authorEnrico Tassi <enrico.tassi@inria.fr>
Sat, 19 Apr 2008 16:30:53 +0000 (16:30 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Sat, 19 Apr 2008 16:30:53 +0000 (16:30 +0000)
helm/software/components/ng_kernel/nCicPp.ml

index c84008fbf36b59db0473a57805cc25748f69c319..782fd9566ba53f5af38a7825b31eec1d7bd10262 100644 (file)
@@ -57,7 +57,9 @@ let trivial_pp_term ~context ~subst ~metasenv ?(inside_fix=false) t =
    | C.Prod ("_",s,t) -> 
        if not toplevel then F.fprintf f "(";
        F.fprintf f "@[<hov 1>";
-       aux ~toplevel:false ctx s; 
+       (match s with 
+       | C.Prod ("_",_,_) -> aux ~toplevel:false ctx s 
+       | _ -> aux ~toplevel:true ctx s);
        F.fprintf f "@;→ ";
        aux ~toplevel:true ("_"::ctx) t;
        F.fprintf f "@]";