Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/vtterm.c
Parent Directory
| Revision Log
| Patch
| 3009 |
return TRUE; |
return TRUE; |
| 3010 |
} |
} |
| 3011 |
|
|
|
|
|
| 3012 |
static void ParseASCII(BYTE b) |
static void ParseASCII(BYTE b) |
| 3013 |
{ |
{ |
| 3014 |
|
if (SSflag) { |
| 3015 |
|
PutChar(b); |
| 3016 |
|
SSflag = FALSE; |
| 3017 |
|
return; |
| 3018 |
|
} |
| 3019 |
|
|
| 3020 |
if (b<=US) { |
if (b<=US) { |
| 3021 |
ParseControl(b); |
ParseControl(b); |
| 3022 |
} else if ((b>=0x20) && (b<=0x7E)) { |
} else if ((b>=0x20) && (b<=0x7E)) { |
|
|
Legend:
| Removed from v.3482 |
|
| changed lines |
| |
Added in v.3483 |
|
|
|