Problem: Gcc complains about uninitialized variable. (Tony Mechelynck)
Solution: Initialize it.
int byte_sum; // byte position in string
char_u *cs; // current *s pointer
int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
- int should_need_pango;
+ int should_need_pango = FALSE;
int slen;
int is_ligature;
int next_is_ligature;
slen++; // ascii
}
}
+
// temporarily zero terminate substring, print, restore char, wrap
backup_ch = *(cs + slen);
*(cs + slen) = 0;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 3527,
/**/
3526,
/**/