]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/toplevel/metaBag.ml
we corrected some reduction bugs about renaming.
[helm.git] / helm / software / lambda-delta / toplevel / metaBag.ml
index cf2c009f49708332338f46a00aa1cfabe0e580b3..4f909bdcaa00443832415fae696f4e104f0658c1 100644 (file)
@@ -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