aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-05-30 13:01:58 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-05-30 13:01:58 +0000
commit46f4caf6d8ac042638b668a5fa16294b420641ac (patch)
tree2f874d7b696a6bf3d72646d11f236de15157adc8 /tactics
parent29c67f1d97221755415ace1e4317cb7af92e24f3 (diff)
Finalement un seul constr pour l'instant dans ExtraRedExpr
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2735 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/tacinterp.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml
index 2d8f7c904..9895f955d 100644
--- a/tactics/tacinterp.ml
+++ b/tactics/tacinterp.ml
@@ -390,7 +390,7 @@ let glob_redexp ist = function
| Lazy f -> Lazy (glob_flag ist f)
| Pattern l -> Pattern (List.map (glob_pattern ist) l)
| (Red _ | Simpl | Hnf as r) -> r
- | ExtraRedExpr (s,l) -> ExtraRedExpr (s, List.map (glob_constr ist) l)
+ | ExtraRedExpr (s,c) -> ExtraRedExpr (s, glob_constr ist c)
(* Interprets an hypothesis name *)
let glob_hyp_location ist = function
@@ -1009,7 +1009,7 @@ let redexp_interp ist = function
| Lazy f -> Lazy (flag_interp ist f)
| Pattern l -> Pattern (List.map (pattern_interp ist) l)
| (Red _ | Simpl | Hnf as r) -> r
- | ExtraRedExpr (s,l) -> ExtraRedExpr (s,List.map (constr_interp ist) l)
+ | ExtraRedExpr (s,c) -> ExtraRedExpr (s,constr_interp ist c)
let interp_may_eval f ist = function
| ConstrEval (r,c) ->