X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Ftoplevel%2FmetaBag.ml;h=4f909bdcaa00443832415fae696f4e104f0658c1;hb=b68e52f889215ce2c21c3d771f59b2d2057d53c1;hp=cf2c009f49708332338f46a00aa1cfabe0e580b3;hpb=338e3e5c639fbcfeeb347a0121cacc6c0f1fc42a;p=helm.git diff --git a/helm/software/lambda-delta/toplevel/metaBag.ml b/helm/software/lambda-delta/toplevel/metaBag.ml index cf2c009f4..4f909bdca 100644 --- a/helm/software/lambda-delta/toplevel/metaBag.ml +++ b/helm/software/lambda-delta/toplevel/metaBag.ml @@ -35,14 +35,14 @@ let rec xlate_term c f = function let l = B.new_location () in let f t = f (B.Bind (l, id, B.Abst w, t)) in let f c = xlate_term c f t in - B.push f c l id (B.Abst w) + B.push "meta" f c l id (B.Abst w) in xlate_term c f w let xlate_pars f pars = let map f (id, w) c = let l = B.new_location () in - let f w = B.push f c l id (B.Abst w) in + let f w = B.push "meta" f c l id (B.Abst w) in xlate_term c f w in C.list_fold_right f map pars B.empty_context