File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -506,7 +506,7 @@ elab (name := abelNF) "abel_nf" tk:"!"? cfg:optConfig loc:(location)? : tactic =
506506 let loc := (loc.map expandLocation).getD (.targets #[] true )
507507 let s ← IO.mkRef {}
508508 let m := AtomM.recurse s cfg.toConfig (wellBehavedDischarge := true ) evalExpr (cleanup cfg)
509- transformAtLocation (m ·) "` abel_nf` " loc (ifUnchanged := .error) false
509+ transformAtLocation (m ·) "abel_nf" loc (ifUnchanged := .error) false
510510
511511@ [tactic_alt abel]
512512macro "abel_nf!" cfg:optConfig loc:(location)? : tactic =>
Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ elab (name := pull) "pull" disch?:(discharger)? head:(ppSpace colGt term) loc:(l
318318 let disch? ← disch?.mapM elabDischarger
319319 let head ← elabHead head
320320 let loc := (loc.map expandLocation).getD (.targets #[] true )
321- transformAtLocation (pullCore head · disch?) "` pull` " loc (ifUnchanged := .error) false
321+ transformAtLocation (pullCore head · disch?) "pull" loc (ifUnchanged := .error) false
322322
323323/-- A simproc variant of `push fun _ ↦ _`, to be used as `simp [↓pushFun]`. -/
324324simproc_decl _root_.pushFun (fun _ ↦ ?_) := pushStep .lambda {}
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ elab (name := ringNF) "ring_nf" tk:"!"? cfg:optConfig loc:(location)? : tactic =
138138 let loc := (loc.map expandLocation).getD (.targets #[] true )
139139 let s ← IO.mkRef {}
140140 let m := AtomM.recurse s cfg.toConfig (wellBehavedDischarge := true ) evalExpr (cleanup cfg)
141- transformAtLocation (m ·) "` ring_nf` " loc cfg.ifUnchanged false
141+ transformAtLocation (m ·) "ring_nf" loc cfg.ifUnchanged false
142142
143143@ [tactic_alt ringNF] macro "ring_nf!" cfg:optConfig loc:(location)? : tactic =>
144144 `(tactic| ring_nf ! $cfg:optConfig $(loc)?)
You can’t perform that action at this time.
0 commit comments