]> matita.cs.unibo.it Git - helm.git/commitdiff
workaround for Pi associativity
authorEnrico Tassi <enrico.tassi@inria.fr>
Fri, 18 Apr 2008 16:58:38 +0000 (16:58 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Fri, 18 Apr 2008 16:58:38 +0000 (16:58 +0000)
helm/software/components/ng_kernel/nCicPp.ml

index 72e8abff5347e9d41c34bf933aa3016c0d3a3959..c84008fbf36b59db0473a57805cc25748f69c319 100644 (file)
@@ -57,7 +57,7 @@ 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:true ctx s; 
+       aux ~toplevel:false ctx s; 
        F.fprintf f "@;→ ";
        aux ~toplevel:true ("_"::ctx) t;
        F.fprintf f "@]";