diff options
author | Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net> | 2018-03-22 13:21:41 +0100 |
---|---|---|
committer | Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net> | 2018-03-22 13:21:41 +0100 |
commit | bca95952b541b209a3f8ca44d1ff119b976e54fb (patch) | |
tree | cc4f6d8a466a0862a8fa3b4c0db8beef4a4c43c8 /printing | |
parent | 9c5a447688365006c8e594edfb1e973db8d53454 (diff) |
bool option -> (VernacCumulative | VernacNonCumulative) option
Diffstat (limited to 'printing')
-rw-r--r-- | printing/ppvernac.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml index b7f5a8309..8180e4503 100644 --- a/printing/ppvernac.ml +++ b/printing/ppvernac.ml @@ -788,8 +788,8 @@ open Decl_kinds if p then let cm = match cum with - | Some true -> "Cumulative" - | Some false -> "NonCumulative" + | Some VernacCumulative -> "Cumulative" + | Some VernacNonCumulative -> "NonCumulative" | None -> "" in cm ^ " " ^ kind |