diff options
| author | Emilio Jesus Gallego Arias | 2020-07-21 15:17:32 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2020-07-21 15:17:32 +0200 |
| commit | 8f4d7ddf4c3736a190b3e073fadb844c017628d3 (patch) | |
| tree | 54b6ff9f33a174f60f3dc431ac6c2a677ac3395a /vernac | |
| parent | f44202e28f38aa900801b0c90514690b6a401bed (diff) | |
| parent | fff15259300b42d83e0d135aa3abc10f274f719d (diff) | |
Merge PR #12697: Fix bug #12691: an only-parsing notation needs to produce a generic printing format in anticipation of further not-only-parsing uses of the notation
Reviewed-by: ppedrot
Diffstat (limited to 'vernac')
| -rw-r--r-- | vernac/metasyntax.ml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/vernac/metasyntax.ml b/vernac/metasyntax.ml index e9b86f323b..6cc48d0e48 100644 --- a/vernac/metasyntax.ml +++ b/vernac/metasyntax.ml @@ -1579,9 +1579,12 @@ let warn_irrelevant_format = let make_printing_rules reserved (sd : SynData.syn_data) = let open SynData in let custom,level,_ = sd.level in - let pp_rule = make_pp_rule level sd.pp_syntax_data sd.format in - if sd.only_parsing then (if sd.format <> None then warn_irrelevant_format (); None) - else Some { + let format = + if sd.only_parsing && sd.format <> None then (warn_irrelevant_format (); None) + else sd.format in + let pp_rule = make_pp_rule level sd.pp_syntax_data format in + (* We produce a generic rule even if this precise notation is only parsing *) + Some { synext_reserved = reserved; synext_unparsing = (pp_rule,level); synext_extra = sd.extra; |
