Skip to content

Commit

Permalink
Merge pull request #12 from fehrenbach/fix-11
Browse files Browse the repository at this point in the history
Possibly fixes #11.
  • Loading branch information
slindley committed Nov 5, 2014
2 parents 3477fee + 2b31b69 commit 61f1054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query.ml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ let rec freshen_for_bindings : Var.var Env.Int.t -> t -> t =
List.fold_left
(fun (gs', env') (x, source) ->
let y = Var.fresh_raw_var () in
((y, ffb source)::gs', Env.Int.bind env (x, y)))
((y, ffb source)::gs', Env.Int.bind env' (x, y)))
([], env)
gs
in
Expand Down

0 comments on commit 61f1054

Please sign in to comment.