diff options
| author | Maxime Dénès | 2016-10-04 13:04:10 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2016-10-04 13:04:10 +0200 |
| commit | 5838f198019651455b62e1ab588f6f72d0c036f4 (patch) | |
| tree | 6a6773d207bc4a0b667b8e9aad55602575f9b2d2 /printing | |
| parent | 6cc37a67e4be8e20cd3da46077ab8f3458e22394 (diff) | |
| parent | b3dbd589e1dc41d7bce18afd87dd6e59968286bb (diff) | |
Merge remote-tracking branch 'github/pr/305' into v8.6
Was PR#305: A possible solution to the issue of fine-tuning warnings in
script.
Diffstat (limited to 'printing')
| -rw-r--r-- | printing/ppvernac.ml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml index 2d87b51d73..f4a112a4cb 100644 --- a/printing/ppvernac.ml +++ b/printing/ppvernac.ml @@ -1110,6 +1110,11 @@ module Make return ( hov 2 (keyword "Set" ++ spc() ++ pr_set_option na v) ) + | VernacSetAppendOption (na,v) -> + return ( + hov 2 (keyword "Set" ++ spc() ++ pr_printoption na None ++ + spc() ++ keyword "Append" ++ spc() ++ str v) + ) | VernacAddOption (na,l) -> return ( hov 2 (keyword "Add" ++ spc() ++ pr_printoption na (Some l)) |
