patch 9.1.0828: string_T struct could be used more often
Problem: string_T struct could be used more often
Solution: Refactor code and make use of string_T struct
for key-value pairs, reformat overlong lines
(John Marriott)
closes: #15975
Signed-off-by: John Marriott <basilisk@internode.on.net>
Signed-off-by: Christian Brabandt <cb@256bit.org>
diff --git a/src/highlight.c b/src/highlight.c
index d3ea2d2..1a4c76d 100644
--- a/src/highlight.c
+++ b/src/highlight.c
@@ -869,11 +869,13 @@
attr = 0;
off = 0;
target.key = 0;
- target.length = 0; // not used, see cmp_keyvalue_value_ni()
+ target.value.length = 0; // not used, see cmp_keyvalue_value_ni()
while (arg[off] != NUL)
{
- target.value = (char *)arg + off;
- entry = (keyvalue_T *)bsearch(&target, &highlight_tab, ARRAY_LENGTH(highlight_tab), sizeof(highlight_tab[0]), cmp_keyvalue_value_ni);
+ target.value.string = arg + off;
+ entry = (keyvalue_T *)bsearch(&target, &highlight_tab,
+ ARRAY_LENGTH(highlight_tab), sizeof(highlight_tab[0]),
+ cmp_keyvalue_value_ni);
if (entry == NULL)
{
semsg(_(e_illegal_value_str), arg);
@@ -881,7 +883,7 @@
}
attr |= entry->key;
- off += entry->length;
+ off += entry->value.length;
if (arg[off] == ',') // another one follows
++off;
}
@@ -1214,9 +1216,11 @@
keyvalue_T *entry;
target.key = 0;
- target.value = (char *)arg;
- target.length = 0; // not used, see cmp_keyvalue_value_i()
- entry = (keyvalue_T *)bsearch(&target, &color_name_tab, ARRAY_LENGTH(color_name_tab), sizeof(color_name_tab[0]), cmp_keyvalue_value_i);
+ target.value.string = arg;
+ target.value.length = 0; // not used, see cmp_keyvalue_value_i()
+ entry = (keyvalue_T *)bsearch(&target, &color_name_tab,
+ ARRAY_LENGTH(color_name_tab), sizeof(color_name_tab[0]),
+ cmp_keyvalue_value_i);
if (entry == NULL)
{
semsg(_(e_color_name_or_number_not_recognized_str), key_start);
@@ -2541,9 +2545,10 @@
return color;
target.key = 0;
- target.value = (char *)name;
- target.length = 0; // not used, see cmp_keyvalue_value_i()
- entry = (keyvalue_T *)bsearch(&target, &rgb_tab, ARRAY_LENGTH(rgb_tab), sizeof(rgb_tab[0]), cmp_keyvalue_value_i);
+ target.value.string = name;
+ target.value.length = 0; // not used, see cmp_keyvalue_value_i()
+ entry = (keyvalue_T *)bsearch(&target, &rgb_tab, ARRAY_LENGTH(rgb_tab),
+ sizeof(rgb_tab[0]), cmp_keyvalue_value_i);
if (entry != NULL)
return gui_adjust_rgb((guicolor_T)entry->key);
@@ -3139,8 +3144,8 @@
STRCPY(buf + buflen, (char_u *)",");
++buflen;
}
- STRCPY(buf + buflen, (char_u *)highlight_index_tab[i]->value);
- buflen += highlight_index_tab[i]->length;
+ STRCPY(buf + buflen, highlight_index_tab[i]->value.string);
+ buflen += highlight_index_tab[i]->value.length;
iarg &= ~highlight_index_tab[i]->key; // don't want "inverse"/"reverse"
}
}
@@ -4236,8 +4241,10 @@
{
if (hlattr & highlight_index_tab[i]->key)
{
- dict_add_bool(dict, highlight_index_tab[i]->value, VVAL_TRUE);
- hlattr &= ~highlight_index_tab[i]->key; // don't want "inverse"/"reverse"
+ dict_add_bool(dict, (char *)highlight_index_tab[i]->value.string,
+ VVAL_TRUE);
+ // don't want "inverse"/"reverse"
+ hlattr &= ~highlight_index_tab[i]->key;
}
}
@@ -4478,14 +4485,15 @@
p = attr_str;
for (i = 0; i < (int)ARRAY_LENGTH(highlight_tab); ++i)
{
- if (dict_get_bool(attrdict, highlight_tab[i].value, VVAL_FALSE) == VVAL_TRUE)
+ if (dict_get_bool(attrdict, (char *)highlight_tab[i].value.string,
+ VVAL_FALSE) == VVAL_TRUE)
{
if (p != attr_str && (size_t)(p - attr_str + 2) < len)
STRCPY(p, (char_u *)",");
- if (p - attr_str + highlight_tab[i].length + 1 < len)
+ if (p - attr_str + highlight_tab[i].value.length + 1 < len)
{
- STRCPY(p, highlight_tab[i].value);
- p += highlight_tab[i].length;
+ STRCPY(p, highlight_tab[i].value.string);
+ p += highlight_tab[i].value.length;
}
}
}