aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authorletouzey2010-04-26 16:22:03 +0000
committerletouzey2010-04-26 16:22:03 +0000
commit3bbcfded9c83e5f7a44d1fcd7dc2c4a8a1f3fcbe (patch)
treed98f8462697422b1e63b25049ae78ce1fe63ca09 /parsing
parent6d35a7ff9810e35a02aa8e2a90198bdb15d262e7 (diff)
Misc small fixes : warning, dep cycles, ocamlbuild...
- git ignore g_decl_mode.ml - exhaustive match for pp_vernac (BeginSubproof, ...) - for ocamlbuild, remove a spurious cycle in recordops.mli (unnecessary open of Classops), and fixes of *.itargets and _tags The compilation via ocamlbuild still need some work, since plugin firstorder now depends on the new plugin decl_mode git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12964 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rw-r--r--parsing/ppvernac.ml5
1 files changed, 5 insertions, 0 deletions
diff --git a/parsing/ppvernac.ml b/parsing/ppvernac.ml
index dc61aaa261..470f937c00 100644
--- a/parsing/ppvernac.ml
+++ b/parsing/ppvernac.ml
@@ -957,6 +957,11 @@ let rec pr_vernac = function
| VernacProof (Tacexpr.TacId _) -> str "Proof"
| VernacProof te -> str "Proof with" ++ spc() ++ pr_raw_tactic te
+ | VernacProofMode s -> str ("Proof Mode "^s)
+ | VernacSubproof None -> str "BeginSubproof"
+ | VernacSubproof (Some i) -> str "BeginSubproof " ++ pr_int i
+ | VernacEndSubproof -> str "EndSubproof"
+
and pr_extend s cl =
let pr_arg a =
try pr_gen (Global.env()) a