diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-05-19 17:35:03 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-05-19 17:35:03 +0000 |
commit | 1abd56dea147493178a582569f50c9c6f03c6008 (patch) | |
tree | 940ad7cdc5bef6de02ea76d7b7bd450920313798 /contrib/field | |
parent | 4f17ea4dcc68bb4619dbf2b8578333288f145fe5 (diff) |
Renommage CMeta en CPatVar qui sert à saisir les PMeta de Pattern
Utilisation d'ident plutôt que int pour PMeta/CPatVar
Ajout CEvar pour la saisie des Evar
Pas d'entrée utilisateur pour les Meta noyau
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4033 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/field')
-rw-r--r-- | contrib/field/field.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/field/field.ml4 b/contrib/field/field.ml4 index 4ac1e0e9a..74fbd7f6b 100644 --- a/contrib/field/field.ml4 +++ b/contrib/field/field.ml4 @@ -147,7 +147,7 @@ let field g = let ist = { lfun=[]; lmatch=[]; debug=get_debug () } in let typ = match Hipattern.match_with_equation (pf_concl g) with - | Some (eq,t::args) when eq = Coqlib.build_coq_eq_data.Coqlib.eq () -> t + | Some (eq,t::args) when eq = (Coqlib.build_coq_eq_data()).Coqlib.eq -> t | _ -> error "The statement is not built from Leibniz' equality" in let th = VConstr (lookup typ) in (interp_tac_gen [(id_of_string "FT",th)] [] (get_debug ()) |