Skip to content

Commit 2290dbb

Browse files
committed
Merge remote-tracking branch 'github/pr/338' into v8.5
Was PR#338: Remove warning now that info_auto is fixed.
2 parents 9194180 + d2e713c commit 2290dbb

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

tactics/tacinterp.ml

+1-12
Original file line numberDiff line numberDiff line change
@@ -2023,12 +2023,6 @@ and interp_atomic ist tac : unit Proofview.tactic =
20232023

20242024
(* Automation tactics *)
20252025
| TacTrivial (debug,lems,l) ->
2026-
begin if debug == Tacexpr.Info then
2027-
msg_warning
2028-
(strbrk"The \"info_trivial\" tactic" ++ spc ()
2029-
++strbrk"does not print traces anymore." ++ spc()
2030-
++strbrk"Use \"Info 1 trivial\", instead.")
2031-
end;
20322026
Proofview.Goal.enter begin fun gl ->
20332027
let env = Proofview.Goal.env gl in
20342028
let sigma = Proofview.Goal.sigma gl in
@@ -2039,13 +2033,8 @@ and interp_atomic ist tac : unit Proofview.tactic =
20392033
lems
20402034
(Option.map (List.map (interp_hint_base ist)) l))
20412035
end
2036+
20422037
| TacAuto (debug,n,lems,l) ->
2043-
begin if debug == Tacexpr.Info then
2044-
msg_warning
2045-
(strbrk"The \"info_auto\" tactic" ++ spc ()
2046-
++strbrk"does not print traces anymore." ++ spc()
2047-
++strbrk"Use \"Info 1 auto\", instead.")
2048-
end;
20492038
Proofview.Goal.enter begin fun gl ->
20502039
let env = Proofview.Goal.env gl in
20512040
let sigma = Proofview.Goal.sigma gl in

0 commit comments

Comments
 (0)