Problem: Warning in tiny build for unused variable. (Tony Mechelynck)
Solution: Add #ifdefs.
}
else
{
+#ifdef FEAT_LINEBREAK
int c0;
+#endif
if (p_extra_free != NULL)
{
/*
* Get a character from the line itself.
*/
+#ifdef FEAT_LINEBREAK
c0 = c = *ptr;
+#endif
#ifdef FEAT_MBYTE
if (has_mbyte)
{
/* Overlong encoded ASCII or ASCII with composing char
* is displayed normally, except a NUL. */
if (mb_c < 0x80)
- c0 = c = mb_c;
+ {
+ c = mb_c;
+# ifdef FEAT_LINEBREAK
+ c0 = mb_c;
+# endif
+ }
mb_utf8 = TRUE;
/* At start of the line we can have a composing char.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 382,
/**/
381,
/**/