aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-02-21 21:46:00 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-02-21 21:46:00 +0000
commit9c54f84cee8057fbb90fdfdee1eb7fa9faffbc4f (patch)
tree675aa685a16a6a74ed7b41ac7e48ac8aaabc5ab6 /parsing
parentac480630f60b99c31aefc78dafce6d483f95b862 (diff)
Correction oubli de report d'une modification de g_vernac (1.69) vers g_vernacnew
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5371 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rw-r--r--parsing/g_vernacnew.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/g_vernacnew.ml4 b/parsing/g_vernacnew.ml4
index c40cabbd8..c7fdcdc57 100644
--- a/parsing/g_vernacnew.ml4
+++ b/parsing/g_vernacnew.ml4
@@ -136,9 +136,9 @@ GEXTEND Gram
def_token:
[ [ "Definition" -> (fun _ _ -> ()), (Global, Definition)
| IDENT "Let" -> (fun _ _ -> ()), (Local, Definition)
- | IDENT "SubClass" -> Class.add_subclass_hook, (Global, Coercion)
+ | IDENT "SubClass" -> Class.add_subclass_hook, (Global, SubClass)
| IDENT "Local"; IDENT "SubClass" ->
- Class.add_subclass_hook, (Local, Coercion) ] ]
+ Class.add_subclass_hook, (Local, SubClass) ] ]
;
assumption_token:
[ [ "Hypothesis" -> (Local, Logical)