diff options
| author | Yann Régis-Gianas | 2014-11-05 08:46:00 +0100 |
|---|---|---|
| committer | Yann Régis-Gianas | 2014-11-05 14:31:41 +0100 |
| commit | c442153f1af0823a95c6b6c31243e43a0f336ee6 (patch) | |
| tree | bdc71c881a4dc5a4b8625d9d7bcdc42c09b9c72f | |
| parent | b6d282b96e332643c1ff6ae63d19602f9b6f5a73 (diff) | |
printing/Ppvernac: Fix missing keyword tagging on theorem introducers.
| -rw-r--r-- | printing/ppvernac.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml index 463654a0d0..8814daf70b 100644 --- a/printing/ppvernac.ml +++ b/printing/ppvernac.ml @@ -348,7 +348,7 @@ module Make prlist_with_sep pr_semicolon (pr_params pr_c) *) - let pr_thm_token k = str (Kindops.string_of_theorem_kind k) + let pr_thm_token k = keyword (Kindops.string_of_theorem_kind k) let pr_syntax_modifier = function | SetItemLevel (l,NextLevel) -> |
