aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/coqargs.ml
Commit message (Collapse)AuthorAge
* Remove 8.5 compatibility support.Gravatar Théo Zimmermann2018-03-02
|
* Remove VOld compatibility flag.Gravatar Théo Zimmermann2018-03-02
|
* Fix #6751 trust_file_cache logic was invertedGravatar Gaëtan Gilbert2018-02-27
| | | | Bug introduced by 675a1dc401eb9a5540ba5bc9a522c1f84d4c3d54
* [toplevel] Refactor command line argument handling.Gravatar Emilio Jesus Gallego Arias2018-02-09
We mostly separate command line argument parsing from interpretation, some (minor) imperative actions are still done at argument parsing time. This tidies up the code quite a bit and allows to better follow the complicated command line handling code. To this effect, we group the key actions to be performed by the toplevel into a new record type. There is still room to improve.