summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--options/m_option.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/options/m_option.c b/options/m_option.c
index 6b9179aec4..9403817ed8 100644
--- a/options/m_option.c
+++ b/options/m_option.c
@@ -1399,12 +1399,12 @@ const m_option_type_t m_option_type_string_list = {
.get = str_list_get,
.set = str_list_set,
.actions = (const struct m_option_action[]){
- {"add-str"},
- {"set"},
{"add"},
- {"pre"},
+ {"add-str"},
+ {"clr", M_OPT_TYPE_OPTIONAL_PARAM},
{"del"},
- {"clr", M_OPT_TYPE_OPTIONAL_PARAM},
+ {"pre"},
+ {"set"},
{0}
},
};
@@ -1425,12 +1425,12 @@ const m_option_type_t m_option_type_string_append_list = {
.get = str_list_get,
.set = str_list_set,
.actions = (const struct m_option_action[]){
- {"add-str"},
- {"set"},
{"add"},
- {"pre"},
+ {"add-str"},
+ {"clr", M_OPT_TYPE_OPTIONAL_PARAM},
{"del"},
- {"clr", M_OPT_TYPE_OPTIONAL_PARAM},
+ {"pre"},
+ {"set"},
{0}
},
};
@@ -3243,11 +3243,11 @@ const m_option_type_t m_option_type_obj_settings_list = {
.get = get_obj_settings_list,
.actions = (const struct m_option_action[]){
{"add"},
- {"set"},
- {"pre"},
- {"del"},
{"clr", M_OPT_TYPE_OPTIONAL_PARAM},
+ {"del"},
{"help", M_OPT_TYPE_OPTIONAL_PARAM},
+ {"pre"},
+ {"set"},
{"toggle"},
{0}
},