terminology: ' ' can be underlined or striken through

This fixes cursorline in vim when it uses underline

SVN revision: 78285
This commit is contained in:
Boris Faure 2012-10-20 14:02:49 +00:00
parent 0dcc9e2044
commit 06b9d771df
1 changed files with 3 additions and 1 deletions

View File

@ -502,7 +502,9 @@ _smart_apply(Evas_Object *obj)
} }
if (cells[j].att.fgintense) fg += 48; if (cells[j].att.fgintense) fg += 48;
if (cells[j].att.bgintense) bg += 48; if (cells[j].att.bgintense) bg += 48;
if ((codepoint == ' ') || (codepoint == 0)) if (((codepoint == ' ') || (codepoint == 0)) &&
(!cells[j].att.strike) &&
(!cells[j].att.underline))
fg = COL_INVIS; fg = COL_INVIS;
} }
if ((tc[x].codepoint != codepoint) || if ((tc[x].codepoint != codepoint) ||