Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/vtterm.c
Parent Directory
| Revision Log
| Patch
| 3085 |
if (CharAttr.Attr & AttrReverse) { |
if (CharAttr.Attr & AttrReverse) { |
| 3086 |
len += _snprintf_s_l(&RepStr[len], sizeof(RepStr) - len, _TRUNCATE, ";7", CLocale); |
len += _snprintf_s_l(&RepStr[len], sizeof(RepStr) - len, _TRUNCATE, ";7", CLocale); |
| 3087 |
} |
} |
| 3088 |
if (CharAttr.Attr2 & Attr2Fore) { |
if (CharAttr.Attr2 & Attr2Fore && ts.ColorFlag & CF_ANSICOLOR) { |
| 3089 |
int color = CharAttr.Fore; |
int color = CharAttr.Fore; |
| 3090 |
if (color <= 7 && (CharAttr.Attr & AttrBold) && (ts.ColorFlag & CF_PCBOLD16)) { |
if (color <= 7 && (CharAttr.Attr & AttrBold) && (ts.ColorFlag & CF_PCBOLD16)) { |
| 3091 |
color += 8; |
color += 8; |
| 3109 |
len += _snprintf_s_l(&RepStr[len], sizeof(RepStr) - len, _TRUNCATE, ";38;5;%d", CLocale, color); |
len += _snprintf_s_l(&RepStr[len], sizeof(RepStr) - len, _TRUNCATE, ";38;5;%d", CLocale, color); |
| 3110 |
} |
} |
| 3111 |
} |
} |
| 3112 |
if (CharAttr.Attr2 & Attr2Back) { |
if (CharAttr.Attr2 & Attr2Back && ts.ColorFlag & CF_ANSICOLOR) { |
| 3113 |
int color = CharAttr.Back; |
int color = CharAttr.Back; |
| 3114 |
if (color <= 7 && (CharAttr.Attr & AttrBlink) && (ts.ColorFlag & CF_PCBOLD16)) { |
if (color <= 7 && (CharAttr.Attr & AttrBlink) && (ts.ColorFlag & CF_PCBOLD16)) { |
| 3115 |
color += 8; |
color += 8; |
|
|
Legend:
| Removed from v.4984 |
|
| changed lines |
| |
Added in v.4991 |
|
|
| |