diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2016-10-25 18:05:28 +0200 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2016-10-25 18:05:28 +0200 |
commit | 2290dbb9c95b63e693ced647731623e64297f5c8 (patch) | |
tree | 855e8512c0bdf6ce51e2338e6540c1ddf264b6d7 | |
parent | 9194180e2da0f7f9a2b2c7574bb7261cc69ead17 (diff) | |
parent | d2e713c3913c995ba3796863f778556e00cc5051 (diff) |
Merge remote-tracking branch 'github/pr/338' into v8.5
Was PR#338: Remove warning now that info_auto is fixed.
-rw-r--r-- | tactics/tacinterp.ml | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml index c3f7fa143..23d188aa7 100644 --- a/tactics/tacinterp.ml +++ b/tactics/tacinterp.ml @@ -2023,12 +2023,6 @@ and interp_atomic ist tac : unit Proofview.tactic = (* Automation tactics *) | TacTrivial (debug,lems,l) -> - begin if debug == Tacexpr.Info then - msg_warning - (strbrk"The \"info_trivial\" tactic" ++ spc () - ++strbrk"does not print traces anymore." ++ spc() - ++strbrk"Use \"Info 1 trivial\", instead.") - end; Proofview.Goal.enter begin fun gl -> let env = Proofview.Goal.env gl in let sigma = Proofview.Goal.sigma gl in @@ -2039,13 +2033,8 @@ and interp_atomic ist tac : unit Proofview.tactic = lems (Option.map (List.map (interp_hint_base ist)) l)) end + | TacAuto (debug,n,lems,l) -> - begin if debug == Tacexpr.Info then - msg_warning - (strbrk"The \"info_auto\" tactic" ++ spc () - ++strbrk"does not print traces anymore." ++ spc() - ++strbrk"Use \"Info 1 auto\", instead.") - end; Proofview.Goal.enter begin fun gl -> let env = Proofview.Goal.env gl in let sigma = Proofview.Goal.sigma gl in |