fix: we don't want antiquotation for seq1

This commit is contained in:
Leonardo de Moura 2020-09-28 15:38:41 -07:00
parent 79078a03b6
commit aa410283c6

View file

@ -30,7 +30,8 @@ def tacticSeq :=
nodeWithAntiquot "tacticSeq" `Lean.Parser.Tactic.tacticSeq $ tacticSeqBracketed <|> tacticSeq1Indented
/- Raw sequence for quotation and grouping -/
def seq1 := parser! sepBy1 tacticParser "; " true
def seq1 :=
node `Lean.Parser.Tactic.seq1 $ sepBy1 tacticParser "; " true
end Tactic