aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/libnames.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-05-20 15:54:50 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-05-20 15:54:50 +0000
commitd0a324eef4d35a87e300a2b660b26fdbe2043d92 (patch)
treed223b5752d1421944fc0bcffcaf2ec49661d7114 /library/libnames.ml
parentf95411d169c8d636e980de3a38bb02c72c3b4965 (diff)
Adoption du nom canonique global_of_constr pour éviter confusion avec type reference
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@7052 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/libnames.ml')
-rw-r--r--library/libnames.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/libnames.ml b/library/libnames.ml
index 361c01696..b7ec0c223 100644
--- a/library/libnames.ml
+++ b/library/libnames.ml
@@ -34,7 +34,7 @@ let subst_global subst ref = match ref with
if kn==kn' then ref, mkConstruct ((kn,i),j)
else ConstructRef ((kn',i),j), mkConstruct ((kn',i),j)
-let reference_of_constr c = match kind_of_term c with
+let global_of_constr c = match kind_of_term c with
| Const sp -> ConstRef sp
| Ind ind_sp -> IndRef ind_sp
| Construct cstr_cp -> ConstructRef cstr_cp
@@ -48,6 +48,7 @@ let constr_of_global = function
| IndRef sp -> mkInd sp
let constr_of_reference = constr_of_global
+let reference_of_constr = global_of_constr
module RefOrdered =
struct