fix indenting

This commit is contained in:
Carsten Haitzler 2014-05-16 16:46:51 +09:00
parent 9ca44463f6
commit 4df9246db0
2 changed files with 18 additions and 17 deletions

View File

@ -388,7 +388,7 @@ colors_term_init(Evas_Object *textgrid, Evas_Object *bg, Config *config)
char buf[32];
Color *color;
for (c = 0; c < 4 * 12; c++)
for (c = 0; c < (4 * 12); c++)
{
n = c + (24 * (c / 24));
color = &colors[c / 24][(c % 24) / 12][c % 12];
@ -466,14 +466,15 @@ colors_standard_get(int set, int col, unsigned char *r, unsigned char *g, unsign
}
/* if pos >= 256, it's in the 256 colors set */
unsigned int color_get(unsigned int pos)
unsigned int
color_get(unsigned int pos)
{
Color *c;
if (pos >= 256)
{
pos -= 256;
if (pos >= sizeof(colors256)/sizeof(Color))
if (pos >= (sizeof(colors256) / sizeof(Color)))
{
ERR("AAAAAA");
return 0;
@ -482,7 +483,7 @@ unsigned int color_get(unsigned int pos)
}
else
{
if (pos >= sizeof(colors)/sizeof(Color))
if (pos >= (sizeof(colors) / sizeof(Color)))
{
ERR("AAAAAA");
return 0;

View File

@ -92,24 +92,24 @@ _draw_cell(const Termpty *ty, unsigned int *pixel, const Termcell *cell)
}
if ((cell->att.fgintense) && (!fgext)) fg += 48;
if ((cell->att.bgintense) && (!bgext)) bg += 48;
if (cell->att.inverse ^ inv)
{
int t;
t = fgext; fgext = bgext; bgext = t;
t = fg; fg = bg; bg = t;
}
// if (cell->att.inverse ^ inv)
// {
// int t;
// t = fgext; fgext = bgext; bgext = t;
// t = fg; fg = bg; bg = t;
// }
if ((cell->att.bold) && (!fgext)) fg += 12;
if ((cell->att.faint) && (!fgext)) fg += 24;
if (bgext) *pixel = color_get(bg + 256);
else if (bg && ((bg % 12) != COL_INVIS)) *pixel = color_get(bg);
if (bgext) {*pixel = color_get(bg + 256);printf("a-%c:%08x\n", cell->codepoint, *pixel);}
else if (bg && ((bg % 12) != COL_INVIS)) {*pixel = color_get(bg);printf("b-%c:%08x\n", cell->codepoint, *pixel);}
else if (!isspace(cell->codepoint))
{
if (fgext) *pixel = color_get(fg + 256);
else *pixel = color_get(fg);
if (fgext) {*pixel = color_get(fg + 256);printf("c-%c:%08x\n", cell->codepoint, *pixel);}
else {*pixel = color_get(fg);printf("d-%c:%08x\n", cell->codepoint, *pixel);}
}
else
*pixel = 0;
{*pixel = 0;printf("z\n");}
}
static void