diff options
| author | Guillaume Melquiond | 2014-04-06 10:51:59 +0200 |
|---|---|---|
| committer | Guillaume Melquiond | 2014-04-06 12:13:37 +0200 |
| commit | eba6b7599bcad6c1da995f1d551b930727a9fc34 (patch) | |
| tree | b75e7b59b849b40cbdc110d5bc901fb3f071fae5 /lib | |
| parent | 076954ad3dcea6e7e7a42806273c3ca1b09135c6 (diff) | |
Change handling of loadpath and mlpath.
- Option -I no longer handles loadpath, only mlpath. This is the same
behavior as coq_makefile. Option -I-as is unchanged.
- Option -R no longer recursively adds to mlpath; only the root directory
is added.
- user-contrib/ and xdg directories are no longer recursively added to
the loadpath.
- theories/ and plugins/ are no longer recursively added to the loadpath
when option -nois is passed.
- All the preconfigured directories are still recursively added to the
mlpath though.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/flags.ml | 2 | ||||
| -rw-r--r-- | lib/flags.mli | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/flags.ml b/lib/flags.ml index 3118901ac5..9b932946ca 100644 --- a/lib/flags.ml +++ b/lib/flags.ml @@ -42,7 +42,7 @@ let with_extra_values o l f x = raise reraise let boot = ref false - +let load_init = ref true let batch_mode = ref false type compilation_mode = BuildVo | BuildVi | Vi2Vo diff --git a/lib/flags.mli b/lib/flags.mli index 6c6aa5fbeb..ebd11ee774 100644 --- a/lib/flags.mli +++ b/lib/flags.mli @@ -9,6 +9,7 @@ (** Global options of the system. *) val boot : bool ref +val load_init : bool ref val batch_mode : bool ref type compilation_mode = BuildVo | BuildVi | Vi2Vo |
