aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2003-04-14 12:08:38 +0000
committerherbelin2003-04-14 12:08:38 +0000
commit00f11e6869b8f3964e6c3ecad5b67800b6853ed7 (patch)
tree37efe94b37948a69974f1562db0f2844df30b985
parent566a6570a857009f13d58e4d7141802c20713791 (diff)
Bug: lookup inapproprie dans subst_tactic
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3921 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--tactics/tacinterp.ml1
1 files changed, 0 insertions, 1 deletions
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml
index efeacafe81..514557d349 100644
--- a/tactics/tacinterp.ml
+++ b/tactics/tacinterp.ml
@@ -1931,7 +1931,6 @@ let rec subst_atomic subst (t:glob_atomic_tactic_expr) = match t with
(* For extensions *)
| TacExtend (_loc,opn,l) ->
- let _ = lookup_tactic opn in
TacExtend (loc,opn,List.map (subst_genarg subst) l)
| TacAlias (s,l,body) ->
TacAlias (s,List.map (fun (id,a) -> (id,subst_genarg subst a)) l,subst_tactic subst body)