diff options
| author | herbelin | 2009-04-24 10:12:49 +0000 |
|---|---|---|
| committer | herbelin | 2009-04-24 10:12:49 +0000 |
| commit | cf71bfb25ddba52c72bdec4507021cd6e5ee06e8 (patch) | |
| tree | 593d4585cb99091c76a8586dc4f9c17d87cf7bcf /tactics/extraargs.ml4 | |
| parent | 8bc5a17d7beb67a68befe2fcd73932d477d1925f (diff) | |
Fixing bug #2308 ("instantiate" tactic did not comply with
the interpretation mechanism of ltac variables)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12100 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/extraargs.ml4')
| -rw-r--r-- | tactics/extraargs.ml4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/extraargs.ml4 b/tactics/extraargs.ml4 index 0eb4a76f3a..4e3e04c67f 100644 --- a/tactics/extraargs.ml4 +++ b/tactics/extraargs.ml4 @@ -100,9 +100,9 @@ END let pr_gen prc _prlc _prtac c = prc c -let pr_rawc _prc _prlc _prtac raw = Printer.pr_rawconstr raw +let pr_rawc _prc _prlc _prtac (_,raw) = Printer.pr_rawconstr raw -let interp_raw _ _ (t,_) = t +let interp_raw ist gl (t,_) = (ist,t) let glob_raw = Tacinterp.intern_constr |
