diff options
author | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-01-02 16:50:02 +0100 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@inria.fr> | 2016-01-02 16:50:02 +0100 |
commit | 2c8275ee3e0e5cd4eb8afd24047fda7f864e0e4e (patch) | |
tree | d36a8ce954b3fb4d3ba0f0b93ca80816620654fc /tactics | |
parent | a5e1b40b93e47a278746ee6752474891cd856c29 (diff) |
Remove useless rec flags.
Diffstat (limited to 'tactics')
-rw-r--r-- | tactics/tactics.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml index 6d20bc3cd..1349d5517 100644 --- a/tactics/tactics.ml +++ b/tactics/tactics.ml @@ -2130,7 +2130,7 @@ let rewrite_hyp assert_style l2r id = Tacticals.New.tclTHEN (rew_on l2r onConcl) (Proofview.V82.tactic (clear [id])) end } -let rec prepare_naming loc = function +let prepare_naming loc = function | IntroIdentifier id -> NamingMustBe (loc,id) | IntroAnonymous -> NamingAvoid [] | IntroFresh id -> NamingBasedOn (id,[]) |