diff options
| author | herbelin | 2008-11-04 21:27:50 +0000 |
|---|---|---|
| committer | herbelin | 2008-11-04 21:27:50 +0000 |
| commit | 1847057e19e518fd8ab87ead5d7fdd006dfa0367 (patch) | |
| tree | da4ae0f34d719c4581f0a47718af9c887793a22b /tactics | |
| parent | 9e97abd3ff096b092a90962d8f74f2a0313f9a5a (diff) | |
Adaptation to ocaml 3.11 new semantics of String.index_from (see bug #1974)
Grant wish #1988 ("fun" forces reduction in "refine" if needed)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11536 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/refine.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/refine.ml b/tactics/refine.ml index c0db5def58..9225fd9d7c 100644 --- a/tactics/refine.ml +++ b/tactics/refine.ml @@ -275,7 +275,7 @@ let rec tcc_aux subst (TH (c,mm,sgp) as _th) gl = | Lambda (Name id,_,m), _ -> assert (isMeta (strip_outer_cast m)); begin match sgp with - | [None] -> introduction id gl + | [None] -> intro_mustbe_force id gl | [Some th] -> tclTHEN (introduction id) (onLastHyp (fun id -> tcc_aux (mkVar id::subst) th)) gl |
