diff options
author | Emilio Jesus Gallego Arias <e+git@x80.org> | 2017-01-17 15:45:43 +0100 |
---|---|---|
committer | Emilio Jesus Gallego Arias <e+git@x80.org> | 2017-04-24 23:58:23 +0200 |
commit | 84eb5cd72a015c45337a5a6070c5651f56be6e74 (patch) | |
tree | 6a54fa82bd711f37fa21f56dcce4591f9474b55c /plugins/quote | |
parent | bf13037e9ca39da28fb648e5488ce56ef8a1f1e2 (diff) |
[location] Use located in tactics.
One case missing due the TACTIC EXTEND macro.
Diffstat (limited to 'plugins/quote')
-rw-r--r-- | plugins/quote/g_quote.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/quote/g_quote.ml4 b/plugins/quote/g_quote.ml4 index 6c3e66112..432625e4d 100644 --- a/plugins/quote/g_quote.ml4 +++ b/plugins/quote/g_quote.ml4 @@ -25,7 +25,7 @@ let x = Id.of_string "x" let make_cont (k : Val.t) (c : EConstr.t) = let c = Tacinterp.Value.of_constr c in - let tac = TacCall (loc, ArgVar (loc, cont), [Reference (ArgVar (loc, x))]) in + let tac = TacCall (loc, (ArgVar (loc, cont), [Reference (ArgVar (loc, x))])) in let ist = { lfun = Id.Map.add cont k (Id.Map.singleton x c); extra = TacStore.empty; } in Tacinterp.eval_tactic_ist ist (TacArg (loc, tac)) |