aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authormsozeau2008-09-07 00:05:39 +0000
committermsozeau2008-09-07 00:05:39 +0000
commit0e189432da864d7e31c9d6bb2355f349308a3d0a (patch)
tree81bb046903cda8d25175352703a3fa7bcec7cca0 /parsing
parent7449a31bf5413a2607e2c1c388f4aeec56a59010 (diff)
Better handling of the opacity of proof obligations, add the possibility of
overriding the default tactic when adding a definition. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11373 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rw-r--r--parsing/q_constr.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/q_constr.ml4 b/parsing/q_constr.ml4
index 44ca8eb2cb..a796cef822 100644
--- a/parsing/q_constr.ml4
+++ b/parsing/q_constr.ml4
@@ -75,7 +75,7 @@ EXTEND
| "0"
[ s = sort -> <:expr< Rawterm.RSort ($dloc$,s) >>
| id = ident -> <:expr< Rawterm.RVar ($dloc$,$id$) >>
- | "_" -> <:expr< Rawterm.RHole ($dloc$, QuestionMark False) >>
+ | "_" -> <:expr< Rawterm.RHole ($dloc$, QuestionMark (Define False)) >>
| "?"; id = ident -> <:expr< Rawterm.RPatVar($dloc$,(False,$id$)) >>
| "{"; c1 = constr; "}"; "+"; "{"; c2 = constr; "}" ->
apply_ref <:expr< coq_sumbool_ref >> [c1;c2]