aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics
diff options
context:
space:
mode:
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) ->