aboutsummaryrefslogtreecommitdiff
path: root/printing
diff options
context:
space:
mode:
authorMaxime Dénès2017-10-03 11:18:50 +0200
committerMaxime Dénès2017-10-03 11:18:50 +0200
commita385b201b4fc12740ad9fecb117e218e6b3f7767 (patch)
treedb2c2df53cb2b42dd6a41e1fbbe3b06aebe2f573 /printing
parentb9740771e8113cb9e607793887be7a12587d0326 (diff)
parent848bc5b5fc366ab5869a2836c5ad83ab4d0f2842 (diff)
Merge PR #667: [vernac] Remove `Qed exporting` syntax.
Diffstat (limited to 'printing')
-rw-r--r--printing/ppvernac.ml5
1 files changed, 1 insertions, 4 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml
index f371fb08c7..10dd42ea91 100644
--- a/printing/ppvernac.ml
+++ b/printing/ppvernac.ml
@@ -718,10 +718,7 @@ open Decl_kinds
match o with
| None -> (match opac with
| Transparent -> keyword "Defined"
- | Opaque None -> keyword "Qed"
- | Opaque (Some l) ->
- keyword "Qed" ++ spc() ++ str"export" ++
- prlist_with_sep (fun () -> str", ") pr_lident l)
+ | Opaque -> keyword "Qed")
| Some id -> (if opac <> Transparent then keyword "Save" else keyword "Defined") ++ spc() ++ pr_lident id
)
| VernacExactProof c ->