diff options
| author | herbelin | 2003-08-31 07:40:44 +0000 |
|---|---|---|
| committer | herbelin | 2003-08-31 07:40:44 +0000 |
| commit | 97744e386938a239eea19c8ae7eddfc7f9cad6ee (patch) | |
| tree | 298a6cd2caa06144e7b2a5cd4d62a9b10e64d6cb | |
| parent | 8f077fda19052919acfd32df030c40285cb28112 (diff) | |
V8: FUNCLASS -> Funclass, SORTCLASS -> Sortclass
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4280 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rwxr-xr-x | pretyping/classops.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pretyping/classops.ml b/pretyping/classops.ml index c7df3229da..aa5057db8d 100755 --- a/pretyping/classops.ml +++ b/pretyping/classops.ml @@ -246,8 +246,8 @@ let strength_of_cl = function | _ -> Global let string_of_class = function - | CL_FUN -> "FUNCLASS" - | CL_SORT -> "SORTCLASS" + | CL_FUN -> if !Options.v7 then "FUNCLASS" else "Funclass" + | CL_SORT -> if !Options.v7 then "SORTCLASS" else "Sortclass" | CL_CONST sp -> string_of_qualid (shortest_qualid_of_global Idset.empty (ConstRef sp)) | CL_IND sp -> |
