aboutsummaryrefslogtreecommitdiff
path: root/contrib/subtac
diff options
context:
space:
mode:
authornotin2008-07-24 11:16:48 +0000
committernotin2008-07-24 11:16:48 +0000
commit417653e0119f8b7479d9a52725c4cb32b3d4af14 (patch)
tree1d33265784b3cb1365ef706143d9207ed114e7a5 /contrib/subtac
parent80921b2f279b70f60cb66684f88c7e6f180f8117 (diff)
Suite commit 11236
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11252 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/subtac')
-rw-r--r--contrib/subtac/subtac.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/subtac/subtac.ml b/contrib/subtac/subtac.ml
index fbb4589b8e..c36c6458db 100644
--- a/contrib/subtac/subtac.ml
+++ b/contrib/subtac/subtac.ml
@@ -140,7 +140,7 @@ let subtac (loc, command) =
match command with
| VernacDefinition (defkind, (_, id as lid), expr, hook) ->
check_fresh lid;
- if Dumpglob.dump () then dump_definition lid "def";
+ dump_definition lid "def";
(match expr with
| ProveBody (bl, t) ->
if Lib.is_modtype () then
@@ -153,12 +153,12 @@ let subtac (loc, command) =
| VernacFixpoint (l, b) ->
List.iter (fun ((lid, _, _, _, _), _) ->
check_fresh lid;
- if Dumpglob.dump () then dump_definition lid "fix") l;
+ dump_definition lid "fix") l;
let _ = trace (str "Building fixpoint") in
ignore(Subtac_command.build_recursive l b)
| VernacStartTheoremProof (thkind, [Some id, (bl, t)], lettop, hook) ->
- if Dumpglob.dump () then dump_definition id "prf";
+ dump_definition id "prf";
if not(Pfedit.refining ()) then
if lettop then
errorlabstrm "Subtac_command.StartProof"
@@ -173,7 +173,7 @@ let subtac (loc, command) =
vernac_assumption env isevars stre l nl
| VernacInstance (glob, sup, is, props, pri) ->
- if Dumpglob.dump () then dump_constraint "inst" is;
+ dump_constraint "inst" is;
ignore(Subtac_classes.new_instance ~global:glob sup is props pri)
| VernacCoFixpoint (l, b) ->