aboutsummaryrefslogtreecommitdiff
path: root/vernac
diff options
context:
space:
mode:
authorJason Gross2018-10-02 14:45:00 -0400
committerJason Gross2018-10-02 14:45:40 -0400
commit3208a68e2c1b5f29fe33b54a66a2c361d3bfc531 (patch)
treeeb3c7d125bed17f2338dc6980a1fac315460ad05 /vernac
parent9e7402632f1aecf5d2dce936d95e296097024ea5 (diff)
Update the -compat flags
Mostly via `dev/tools/update-compat.py --cur-version=8.9` We just remove test-suite/success/FunindExtraction_compat86.v because, except for the `Extraction iszero.` line at the bottom, it is a duplicate of `test-suite/success/Funind.v` (except with `-compat 8.6`). We also manually update a number of test-suite files to pre-emptively remove compatibility notations (which used to be compat 8.6, but are now compat 8.7).
Diffstat (limited to 'vernac')
-rw-r--r--vernac/g_vernac.mlg6
1 files changed, 3 insertions, 3 deletions
diff --git a/vernac/g_vernac.mlg b/vernac/g_vernac.mlg
index 7dd5471f3f..cf69a84b8b 100644
--- a/vernac/g_vernac.mlg
+++ b/vernac/g_vernac.mlg
@@ -60,10 +60,10 @@ let make_bullet s =
| _ -> assert false
let parse_compat_version = let open Flags in function
- | "8.8" -> Current
+ | "8.9" -> Current
+ | "8.8" -> V8_8
| "8.7" -> V8_7
- | "8.6" -> V8_6
- | ("8.5" | "8.4" | "8.3" | "8.2" | "8.1" | "8.0") as s ->
+ | ("8.6" | "8.5" | "8.4" | "8.3" | "8.2" | "8.1" | "8.0") as s ->
CErrors.user_err ~hdr:"get_compat_version"
Pp.(str "Compatibility with version " ++ str s ++ str " not supported.")
| s ->