diff options
| author | Emilio Jesus Gallego Arias | 2017-04-21 02:01:02 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2017-04-21 02:01:02 +0200 |
| commit | a821f74dc91e438c86037d1dc8903a49934e6ee5 (patch) | |
| tree | e29fdcb22b310768b400387167db9f97916333d6 /library | |
| parent | beb3acd2fd3831404f0be2da61d3f28e210e8349 (diff) | |
[flags] Deprecate is_silent/is_verbose in favor of single flag.
Today, both modes are controlled by a single flag, however this is a
bit misleading as is_silent really means "quiet", that is to say `coqc
-q` whereas "verbose" is Coq normal operation.
We also restore proper behavior of goal printing in coqtop on quiet
mode, thanks to @Matafou for the report.
Diffstat (limited to 'library')
| -rw-r--r-- | library/loadpath.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/loadpath.ml b/library/loadpath.ml index d03c6c5553..529b9502b0 100644 --- a/library/loadpath.ml +++ b/library/loadpath.ml @@ -113,5 +113,5 @@ let expand_path ?root dir = let locate_file fname = let paths = List.map physical !load_paths in let _,longfname = - System.find_file_in_path ~warn:(Flags.is_verbose()) paths fname in + System.find_file_in_path ~warn:(not !Flags.quiet) paths fname in longfname |
