aboutsummaryrefslogtreecommitdiff
path: root/toplevel
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-11-10 09:41:03 +0000
committerGitHub2020-11-10 09:41:03 +0000
commitfa6c67d721d4178d6b82571feef33c887aef5ba2 (patch)
treebf9a73bb5ad4c5c53e4077a3622452ebf3683c0d /toplevel
parent2676541296bf1650be1a34f17e95f973b54ab715 (diff)
parenta028e70817e7fd43b35643a8faa9bc7f59897ddb (diff)
Merge PR #13325: [compat] remove 8.10
Reviewed-by: Zimmi48
Diffstat (limited to 'toplevel')
-rw-r--r--toplevel/coqargs.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/toplevel/coqargs.ml b/toplevel/coqargs.ml
index d587e57fd8..c6ccf2a427 100644
--- a/toplevel/coqargs.ml
+++ b/toplevel/coqargs.ml
@@ -266,8 +266,7 @@ let get_compat_file = function
| "8.13" -> "Coq.Compat.Coq813"
| "8.12" -> "Coq.Compat.Coq812"
| "8.11" -> "Coq.Compat.Coq811"
- | "8.10" -> "Coq.Compat.Coq810"
- | ("8.9" | "8.8" | "8.7" | "8.6" | "8.5" | "8.4" | "8.3" | "8.2" | "8.1" | "8.0") as s ->
+ | ("8.10" | "8.9" | "8.8" | "8.7" | "8.6" | "8.5" | "8.4" | "8.3" | "8.2" | "8.1" | "8.0") as s ->
CErrors.user_err ~hdr:"get_compat_file"
Pp.(str "Compatibility with version " ++ str s ++ str " not supported.")
| s ->