diff options
author | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2018-02-20 13:55:46 +0100 |
---|---|---|
committer | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2018-03-02 23:45:51 +0100 |
commit | a4817d25befc71b7dbf707637660431144985133 (patch) | |
tree | fb0d98df0c5678e5a277ff07de82b43bc8a69b7f /parsing | |
parent | ff7be36add22cf3c6efd24a27ebdde818fc1dc06 (diff) |
Remove VOld compatibility flag.
Diffstat (limited to 'parsing')
-rw-r--r-- | parsing/g_vernac.ml4 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/parsing/g_vernac.ml4 b/parsing/g_vernac.ml4 index 93e534e0b..6193ceb1a 100644 --- a/parsing/g_vernac.ml4 +++ b/parsing/g_vernac.ml4 @@ -58,7 +58,6 @@ let parse_compat_version ?(allow_old = true) = let open Flags in function | "8.6" -> V8_6 | "8.5" -> V8_5 | ("8.4" | "8.3" | "8.2" | "8.1" | "8.0") as s -> - if allow_old then VOld else CErrors.user_err ~hdr:"get_compat_version" Pp.(str "Compatibility with version " ++ str s ++ str " not supported.") | s -> |