X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Ftoplevel%2FmetaBrg.ml;h=ff74f8e7558cb51ce7ac2ea80615f9ec64015bd8;hb=2e451dca46e509fd7e7772f3d2e438c189ce10a1;hp=4ee25812e9938840409c97241341d8a85a3f000b;hpb=57a360d659425ce1ee9a69516b66a4d3c7b8eb62;p=helm.git diff --git a/helm/software/lambda-delta/toplevel/metaBrg.ml b/helm/software/lambda-delta/toplevel/metaBrg.ml index 4ee25812e..ff74f8e75 100644 --- a/helm/software/lambda-delta/toplevel/metaBrg.ml +++ b/helm/software/lambda-delta/toplevel/metaBrg.ml @@ -34,22 +34,21 @@ let rec xlate_term c f = function let f w = let a = [Y.Name (id, true)] in let f t = f (B.Bind (B.abst a w, t)) in - let f c = xlate_term c f t in - B.push f c (B.abst a w) + xlate_term (B.push c (B.abst a w)) f t in xlate_term c f w let xlate_pars f pars = let map f (id, w) c = let a = [Y.Name (id, true)] in - let f w = B.push f c (B.abst a w) in + let f w = f (B.push c (B.abst a w)) in xlate_term c f w in C.list_fold_right f map pars B.empty_lenv let unwind_to_xlate_term f c t = - let map f t b = f (B.bind b t) in - let f t = B.fold_left f map t c in + let map t b = B.bind b t in + let f t = f (B.fold_left map t c) in xlate_term c f t let xlate_entry f = function