diff options
| author | ppedrot | 2013-08-08 12:28:17 +0000 |
|---|---|---|
| committer | ppedrot | 2013-08-08 12:28:17 +0000 |
| commit | f0a83ebe0cb8d1a4815ce551cdca66f13a93c72e (patch) | |
| tree | 605a87dbc501e431487d8a504d91f05db365e1ee /tactics | |
| parent | 1f80821a8d3586933201d7094b32f06d29e444d3 (diff) | |
Small fix in IStream interface.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16667 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/tacinterp.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml index 1918ddc0cb..1b460b060b 100644 --- a/tactics/tacinterp.ml +++ b/tactics/tacinterp.ml @@ -984,7 +984,7 @@ let match_pat refresh lmatch hyp gl = function let lmeta = extended_matches t hyp in let lmeta = verify_metas_coherence gl lmatch lmeta in let ans = { e_ctx = Id.Map.empty; e_sub = lmeta; } in - IStream.cons ans IStream.lempty + IStream.cons ans IStream.empty with PatternMatchingFailure | Not_coherent_metas -> IStream.empty end | Subterm (b,ic,t) -> |
