diff options
| author | Emilio Jesus Gallego Arias | 2019-08-09 00:00:27 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-08-09 00:00:27 +0200 |
| commit | b8477fb38842016c226ba9d7be8f60486411a2ee (patch) | |
| tree | 0e0eee6924d097d1e684dea70745ce09ce74ea8f /toplevel | |
| parent | 0146ca2b11a255cbfe2868923b80376a61cc05de (diff) | |
| parent | 272ed89ed0120b68014ea0a59b40c396fa241b29 (diff) | |
Merge PR #10641: Fix regression of #10637 (-emacs arg should set color to `EMACS)
Reviewed-by: ejgallego
Diffstat (limited to 'toplevel')
| -rw-r--r-- | toplevel/coqargs.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toplevel/coqargs.ml b/toplevel/coqargs.ml index eb0331d95e..67d70416c8 100644 --- a/toplevel/coqargs.ml +++ b/toplevel/coqargs.ml @@ -184,7 +184,7 @@ let add_load_vernacular opts verb s = (** Options for proof general *) let set_emacs opts = Printer.enable_goal_tags_printing := true; - { opts with config = { opts.config with color = `OFF; print_emacs = true }} + { opts with config = { opts.config with color = `EMACS; print_emacs = true }} let set_logic f oval = { oval with config = { oval.config with logic = f oval.config.logic }} |
