aboutsummaryrefslogtreecommitdiff
path: root/plugins/omega
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-02-04 17:07:34 +0100
committerGaëtan Gilbert2020-02-12 16:23:49 +0100
commit4563779bf990cf22d88474a68acf4eb9cfd8d173 (patch)
treec5333864070ccc9b8746799e9236ba90ef1a432d /plugins/omega
parent6c1de3455d5cd79958a8e26ac728f7d5d1b8d025 (diff)
Remove Goptions.opt_name field
The standard use is to repeat the option keywords in lowercase, which is basically useless. En passant add doc entry for Dump Arith.
Diffstat (limited to 'plugins/omega')
-rw-r--r--plugins/omega/coq_omega.ml5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/omega/coq_omega.ml b/plugins/omega/coq_omega.ml
index 979e5bb8d8..118db01ecb 100644
--- a/plugins/omega/coq_omega.ml
+++ b/plugins/omega/coq_omega.ml
@@ -67,7 +67,6 @@ open Goptions
let () =
declare_bool_option
{ optdepr = false;
- optname = "Omega system time displaying flag";
optkey = ["Omega";"System"];
optread = read display_system_flag;
optwrite = write display_system_flag }
@@ -75,7 +74,6 @@ let () =
let () =
declare_bool_option
{ optdepr = false;
- optname = "Omega action display flag";
optkey = ["Omega";"Action"];
optread = read display_action_flag;
optwrite = write display_action_flag }
@@ -83,7 +81,6 @@ let () =
let () =
declare_bool_option
{ optdepr = false;
- optname = "Omega old style flag";
optkey = ["Omega";"OldStyle"];
optread = read old_style_flag;
optwrite = write old_style_flag }
@@ -91,7 +88,6 @@ let () =
let () =
declare_bool_option
{ optdepr = true;
- optname = "Omega automatic reset of generated names";
optkey = ["Stable";"Omega"];
optread = read reset_flag;
optwrite = write reset_flag }
@@ -99,7 +95,6 @@ let () =
let () =
declare_bool_option
{ optdepr = false;
- optname = "Omega takes advantage of context variables with body";
optkey = ["Omega";"UseLocalDefs"];
optread = read letin_flag;
optwrite = write letin_flag }