aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/eauto.ml4
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-04-17 15:40:00 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-04-17 15:40:00 +0000
commit4bca83aee3bb81949f0c820cc2b438af38ff6f26 (patch)
tree9ace708e149d8db5901c82148eb70791872eaa48 /tactics/eauto.ml4
parent456ff087953a62df0b46e76f16d0117363558b0d (diff)
Use nice "unfold" instead of ugly "change" to display calls to unfold hints
in "info auto". git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12947 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/eauto.ml4')
-rw-r--r--tactics/eauto.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/eauto.ml4 b/tactics/eauto.ml4
index 0a5a9c481..b0fef2b71 100644
--- a/tactics/eauto.ml4
+++ b/tactics/eauto.ml4
@@ -134,7 +134,7 @@ and e_my_find_search db_list local_db hdc concl =
| Res_pf_THEN_trivial_fail (term,cl) ->
tclTHEN (unify_e_resolve st (term,cl))
(e_trivial_fail_db db_list local_db)
- | Unfold_nth c -> unfold_in_concl [all_occurrences,c]
+ | Unfold_nth c -> h_reduce (Unfold [all_occurrences_expr,c]) onConcl
| Extern tacast -> conclPattern concl p tacast
in
(tac,pr_autotactic t))