diff options
| author | Jean-Christophe Léchenet | 2020-08-06 11:22:51 +0200 |
|---|---|---|
| committer | Jean-Christophe Léchenet | 2020-08-06 11:22:51 +0200 |
| commit | 12acf8322a5ec81d8adcf87c2a903b17b7841ae4 (patch) | |
| tree | abfba53748f9f8b469bb85e4d04e2dbe85a2a93e | |
| parent | 51ecccef0308eceec1ddd9776a03fd993b3ea71a (diff) | |
Repair coqide option "Display parentheses"
| -rw-r--r-- | ide/coqide/coq.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ide/coqide/coq.ml b/ide/coqide/coq.ml index 57cdccce6d..0e237b74fe 100644 --- a/ide/coqide/coq.ml +++ b/ide/coqide/coq.ml @@ -544,6 +544,7 @@ struct let coercions = BoolOpt ["Printing"; "Coercions"] let raw_matching = BoolOpt ["Printing"; "Matching"] let notations = BoolOpt ["Printing"; "Notations"] + let parentheses = BoolOpt ["Printing"; "Parentheses"] let all_basic = BoolOpt ["Printing"; "All"] let existential = BoolOpt ["Printing"; "Existential"; "Instances"] let universes = BoolOpt ["Printing"; "Universes"] @@ -558,7 +559,7 @@ struct { opts = [raw_matching]; init = true; label = "Display raw _matching expressions" }; { opts = [notations]; init = true; label = "Display _notations" }; - { opts = [notations]; init = true; label = "Display _parentheses" }; + { opts = [parentheses]; init = true; label = "Display _parentheses" }; { opts = [all_basic]; init = false; label = "Display _all basic low-level contents" }; { opts = [existential]; init = false; |
