diff options
| author | Emilio Jesus Gallego Arias | 2019-08-08 23:15:19 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-08-26 11:45:45 +0200 |
| commit | 61f4df8b5b974302e8b48bcf271aa68757db69fe (patch) | |
| tree | dd9ba4f3f07045f06f8594f65184280a90d43ab8 /tactics | |
| parent | 09953295ea86eaf78c6688a1a2861aa6f41cd9ab (diff) | |
[glob/aux files] Remove undocumented Stdout dump, cleanup flags.
Fixes #10640
We remove the `StdOut` dump target, so now dump will only happen if a
file is specified. Indeed, we make the default no to dump, and enable
dump only in coqc, moving the option to the `Coqcargs` module.
No need for a changes entry as this feature was undocumented, and no
use case was given when introduced.
Output to feedback must be explicitly enabled by clients / coqidetop,
and we have thus also removed the undocumented option `-feedback-glob`.
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/declare.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/declare.ml b/tactics/declare.ml index c280760e84..c23ee4a76e 100644 --- a/tactics/declare.ml +++ b/tactics/declare.ml @@ -224,7 +224,7 @@ let cast_opaque_proof_entry e = let vars = global_vars_set env pf in ids_typ, vars in - let () = if !Flags.record_aux_file then record_aux env hyp_typ hyp_def in + let () = if Aux_file.recording () then record_aux env hyp_typ hyp_def in keep_hyps env (Id.Set.union hyp_typ hyp_def) | Some hyps -> hyps in |
