feat: allow anonymous antiquotations for tacticSeq

This commit is contained in:
Sebastian Ullrich 2022-04-05 17:28:45 +02:00
parent df499a5b64
commit 2c54a0d17a

View file

@ -36,7 +36,7 @@ def tacticSeq1Indented : Parser :=
def tacticSeqBracketed : Parser :=
leading_parser "{" >> many (group (ppLine >> tacticParser >> optional ";")) >> ppDedent (ppLine >> "}")
def tacticSeq :=
leading_parser (withAnonymousAntiquot := false) tacticSeqBracketed <|> tacticSeq1Indented
leading_parser tacticSeqBracketed <|> tacticSeq1Indented
/- Raw sequence for quotation and grouping -/
def seq1 :=