diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-11-24 12:33:06 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-11-24 12:33:06 +0000 |
commit | 8aea38ca9b526d1d1ed731948528b4e921b303d2 (patch) | |
tree | e73ee9505b8d30b00baf86d472ee5a3e3685980b /proofs | |
parent | 047cc297fddba6567f68550c11769142411a17e1 (diff) |
Prise en compte des defs syntaxiques dans is_global et global_reference qui passent donc de Termops a Constrintern
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4980 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs')
-rw-r--r-- | proofs/tacmach.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/tacmach.ml b/proofs/tacmach.ml index 32951721b..d6e224530 100644 --- a/proofs/tacmach.ml +++ b/proofs/tacmach.ml @@ -87,7 +87,7 @@ let pf_interp_type gls c = let evc = project gls in Constrintern.interp_type evc (pf_env gls) c -let pf_global gls id = construct_reference (pf_hyps gls) id +let pf_global gls id = Constrintern.construct_reference (pf_hyps gls) id let pf_parse_const gls = compose (pf_global gls) id_of_string |