aboutsummaryrefslogtreecommitdiff
path: root/lib/flags.ml
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-09-27 02:33:10 +0200
committerEmilio Jesus Gallego Arias2018-10-01 05:00:01 +0200
commit9d3a2d042500094befe4b88f3aa73693bc287ed9 (patch)
treea35b05af58af9143a2ef84ffd5b4f63679d3f90a /lib/flags.ml
parent4de95593380294b3d2c4f10f346aaf9bb5d4d6eb (diff)
[lib] [flags] Move coqlib handling out of `Flags`
The relevant logic is already in `Envars`, so it makes sense to make it private and don't expose the low-level implementation of the logic.
Diffstat (limited to 'lib/flags.ml')
-rw-r--r--lib/flags.ml4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index 54f25e209d..4d6c36f55d 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -121,10 +121,6 @@ let warn = ref true
let make_warn flag = warn := flag; ()
let if_warn f x = if !warn then f x
-(* Options for changing coqlib *)
-let coqlib_spec = ref false
-let coqlib = ref "(not initialized yet)"
-
(* Level of inlining during a functor application *)
let default_inline_level = 100