aboutsummaryrefslogtreecommitdiff
path: root/contrib/correctness/psyntax.ml4
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/correctness/psyntax.ml4')
-rw-r--r--contrib/correctness/psyntax.ml411
1 files changed, 4 insertions, 7 deletions
diff --git a/contrib/correctness/psyntax.ml4 b/contrib/correctness/psyntax.ml4
index fc09cfa69c..70596779d0 100644
--- a/contrib/correctness/psyntax.ml4
+++ b/contrib/correctness/psyntax.ml4
@@ -578,14 +578,11 @@ GEXTEND Gram
tac = Tactic.tactic; "." ->
let d = Ast.dynamic (in_prog p) in
let str = Ast.str s in
- <:ast< (CORRECTNESS $str (VERNACDYN $d) (TACTIC $tac)) >>
-
- | IDENT "Debug"; IDENT "on"; "." -> <:ast< (PROGDEBUGON) >>
+ <:ast< (CORRECTNESS $str (VERNACDYN $d) (TACTIC $tac)) >> ] ];
+ Pcoq.Vernac_.command:
+ [ [ IDENT "Debug"; IDENT "on"; "." -> <:ast< (PROGDEBUGON) >>
- | IDENT "Debug"; IDENT "off"; "." -> <:ast< (PROGDEBUGOFF) >>
-
- ] ]
- ;
+ | IDENT "Debug"; IDENT "off"; "." -> <:ast< (PROGDEBUGOFF) >> ] ];
END
;;