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 /vernac/proof_using.ml | |
| 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 'vernac/proof_using.ml')
| -rw-r--r-- | vernac/proof_using.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/proof_using.ml b/vernac/proof_using.ml index 094e2c1184..cfb3248c7b 100644 --- a/vernac/proof_using.ml +++ b/vernac/proof_using.ml @@ -130,7 +130,7 @@ let suggest_common env ppid used ids_typ skip = str "should start with one of the following commands:"++spc()++ v 0 ( prlist_with_sep cut (fun x->str"Proof using " ++x++ str". ") !valid_exprs)); - if !Flags.record_aux_file + if Aux_file.recording () then let s = string_of_ppcmds (prlist_with_sep (fun _ -> str";") (fun x->x) !valid_exprs) in record_proof_using s |
