diff options
| author | Maxime Dénès | 2017-06-02 14:35:13 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-06-02 14:35:13 +0200 |
| commit | 13e8983e3be6bff993c212d7fdcf707cf3c749c6 (patch) | |
| tree | 46ad587ecdbf12e7cd047e9f2029b81db347a9c2 /lib | |
| parent | 129faf2dbd68e0f3ab8688496372b6406e3ee2e4 (diff) | |
| parent | 6b041a242607ec906fbab451e53c15af6339e4ef (diff) | |
Merge PR#647: [emacs] [toplevel] Make emacs flag local to the toplevel.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/flags.ml | 1 | ||||
| -rw-r--r-- | lib/flags.mli | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/flags.ml b/lib/flags.ml index b2671e5b60..6a3b7a4261 100644 --- a/lib/flags.ml +++ b/lib/flags.ml @@ -87,7 +87,6 @@ let in_toplevel = ref false let profile = false -let print_emacs = ref false let xml_export = ref false let ide_slave = ref false diff --git a/lib/flags.mli b/lib/flags.mli index 7ce808041a..e2cf09474e 100644 --- a/lib/flags.mli +++ b/lib/flags.mli @@ -13,7 +13,9 @@ val boot : bool ref val load_init : bool ref +(* Will affect STM caching *) val batch_mode : bool ref + type compilation_mode = BuildVo | BuildVio | Vio2Vo val compilation_mode : compilation_mode ref val compilation_output_name : string option ref @@ -56,8 +58,6 @@ val profile : bool (* Legacy flags *) -(* -emacs option: printing includes emacs tags, will affect stm caching. *) -val print_emacs : bool ref (* -xml option: xml hooks will be called *) val xml_export : bool ref |
