aboutsummaryrefslogtreecommitdiff
path: root/ide
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-08-11 18:58:33 +0200
committerPierre-Marie Pédrot2020-08-11 18:58:33 +0200
commit1d6c794956b962294db765e624b58e531e2f970a (patch)
tree244e99c2f59fa23dc95288698e47fa7f260e8487 /ide
parent873130ae0e8f6079388f4be8259cd893f314e6d5 (diff)
parent12acf8322a5ec81d8adcf87c2a903b17b7841ae4 (diff)
Merge PR #12794: Repair coqide option "Display parentheses"
Reviewed-by: gares Reviewed-by: ppedrot
Diffstat (limited to 'ide')
-rw-r--r--ide/coqide/coq.ml3
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;