Problem: Unnecessary code.
Solution: Remove code that isn't needed. (closes #10534)
&& curwin->w_lcs_chars.leadmultispace != NULL)
{
c = curwin->w_lcs_chars.leadmultispace[multispace_pos++];
- if (curwin->w_lcs_chars.leadmultispace[multispace_pos] == NUL)
+ if (curwin->w_lcs_chars.leadmultispace[multispace_pos]
+ == NUL)
multispace_pos = 0;
attr = HL_ATTR(HLF_8);
}
- else if (lead != NULL && s <= lead && curwin->w_lcs_chars.lead)
+ else if (lead != NULL && s <= lead
+ && curwin->w_lcs_chars.lead != NUL)
{
c = curwin->w_lcs_chars.lead;
attr = HL_ATTR(HLF_8);
c = curwin->w_lcs_chars.trail;
attr = HL_ATTR(HLF_8);
}
- else if (list && lead != NULL && s <= lead && in_multispace
- && curwin->w_lcs_chars.leadmultispace != NULL)
- {
- c = curwin->w_lcs_chars.leadmultispace[multispace_pos++];
- if (curwin->w_lcs_chars.leadmultispace[multispace_pos] == NUL)
- multispace_pos = 0;
- attr = HL_ATTR(HLF_8);
- }
else if (list && in_multispace
&& curwin->w_lcs_chars.multispace != NULL)
{
{
lcs_chars.tab1 = NUL;
lcs_chars.tab3 = NUL;
+
if (multispace_len > 0)
{
lcs_chars.multispace = ALLOC_MULT(int, multispace_len + 1);
s = p + len2 + 1;
if (round == 0)
{
- // Get length of lcsmultispace string in first round
+ // get length of lcs-leadmultispace string in first
+ // round
last_lmultispace = p;
lead_multispace_len = 0;
while (*s != NUL && *s != ',')
++lead_multispace_len;
}
if (lead_multispace_len == 0)
- // lcsmultispace cannot be an empty string
+ // lcs-leadmultispace cannot be an empty string
return e_invalid_argument;
p = s;
}
}
if (tab == lcstab)
{
- if (wp->w_lcs_chars.multispace != NULL)
- vim_free(wp->w_lcs_chars.multispace);
- if (wp->w_lcs_chars.leadmultispace != NULL)
- vim_free(wp->w_lcs_chars.leadmultispace);
+ vim_free(wp->w_lcs_chars.multispace);
+ vim_free(wp->w_lcs_chars.leadmultispace);
wp->w_lcs_chars = lcs_chars;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 5070,
/**/
5069,
/**/