From b1fe1a377121aa0b9d76124d5cdeb60a72477d1b Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Tue, 22 Sep 2020 19:08:28 +0200 Subject: Setting default value for Display Parentheses off in CoqIDE. --- ide/coqide/coq.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/coqide/coq.ml b/ide/coqide/coq.ml index 0e237b74fe..038c8b91a8 100644 --- a/ide/coqide/coq.ml +++ b/ide/coqide/coq.ml @@ -559,7 +559,7 @@ struct { opts = [raw_matching]; init = true; label = "Display raw _matching expressions" }; { opts = [notations]; init = true; label = "Display _notations" }; - { opts = [parentheses]; init = true; label = "Display _parentheses" }; + { opts = [parentheses]; init = false; label = "Display _parentheses" }; { opts = [all_basic]; init = false; label = "Display _all basic low-level contents" }; { opts = [existential]; init = false; -- cgit v1.2.3 From c6a27e8b7ffd04dab66d61194cca7878b2351223 Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Tue, 22 Sep 2020 19:20:32 +0200 Subject: Adding change log for #12794 and #13067. --- .../13067-master+fix-display-parentheses-default-coqide.rst | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 doc/changelog/03-notations/13067-master+fix-display-parentheses-default-coqide.rst diff --git a/doc/changelog/03-notations/13067-master+fix-display-parentheses-default-coqide.rst b/doc/changelog/03-notations/13067-master+fix-display-parentheses-default-coqide.rst new file mode 100644 index 0000000000..50aa4a9052 --- /dev/null +++ b/doc/changelog/03-notations/13067-master+fix-display-parentheses-default-coqide.rst @@ -0,0 +1,5 @@ +- **Fixed:** + Repairing option :g:`Display parentheses` in CoqIDE + (`#12794 `_ and `#13067 `_, + fixes `#12793 `_, + by Jean-Christophe Léchenet and Hugo Herbelin). -- cgit v1.2.3