diff options
| author | Pierre-Marie Pédrot | 2016-10-08 00:10:55 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-10-08 00:56:12 +0200 |
| commit | 9bdd8aff92829aaa7c5a45b6e4e5adfa9e8789df (patch) | |
| tree | 9e335c08004f01cf4016a11f83ffa1ca07b720c1 /printing/pptacticsig.mli | |
| parent | d93e8a7e7c9ae08cfedaf4a3db00ae3f9240bfe5 (diff) | |
Fix bug #5098: Symmetry broken in HoTT.
We defactorize the in_clause grammar entry to allow parsing of the "symmetry"
tactic when it has no arguments. Beforehand, the clause_dft_concl entry
accepted the empty stream, preventing the definition of symmetry as a mere
identifier.
Diffstat (limited to 'printing/pptacticsig.mli')
| -rw-r--r-- | printing/pptacticsig.mli | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/printing/pptacticsig.mli b/printing/pptacticsig.mli index c08d6044db..665e055f23 100644 --- a/printing/pptacticsig.mli +++ b/printing/pptacticsig.mli @@ -29,6 +29,9 @@ module type Pp = sig val pr_and_short_name : ('a -> std_ppcmds) -> 'a and_short_name -> std_ppcmds val pr_or_by_notation : ('a -> std_ppcmds) -> 'a or_by_notation -> std_ppcmds + val pr_in_clause : + ('a -> Pp.std_ppcmds) -> 'a Locus.clause_expr -> Pp.std_ppcmds + val pr_clauses : bool option -> ('a -> Pp.std_ppcmds) -> 'a Locus.clause_expr -> Pp.std_ppcmds |
