diff options
| author | coqbot-app[bot] | 2020-09-22 21:03:00 +0000 |
|---|---|---|
| committer | GitHub | 2020-09-22 21:03:00 +0000 |
| commit | c66919b501f58867fa4cb05bcf80c83f96042a90 (patch) | |
| tree | a37ec2e5b5fbbf606672dd6feabe31bc81426bb5 | |
| parent | 46bc7d034aa57c21825371e99b25c6f86c0812d1 (diff) | |
| parent | c6a27e8b7ffd04dab66d61194cca7878b2351223 (diff) | |
Merge PR #13067: Setting default value for Display Parentheses off in CoqIDE
Reviewed-by: ejgallego
| -rw-r--r-- | doc/changelog/03-notations/13067-master+fix-display-parentheses-default-coqide.rst | 5 | ||||
| -rw-r--r-- | ide/coqide/coq.ml | 2 |
2 files changed, 6 insertions, 1 deletions
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 <https://github.com/coq/coq/pull/12794>`_ and `#13067 <https://github.com/coq/coq/pull/13067>`_, + fixes `#12793 <https://github.com/coq/coq/issues/12793>`_, + by Jean-Christophe Léchenet and Hugo Herbelin). 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; |
