Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/vtterm.c
Parent Directory
| Revision Log
| Patch
| 26 |
|
|
| 27 |
#include "vtterm.h" |
#include "vtterm.h" |
| 28 |
|
|
| 29 |
|
void ParseFirst(BYTE b); |
| 30 |
|
|
| 31 |
#define MAPSIZE(x) (sizeof(x)/sizeof((x)[0])) |
#define MAPSIZE(x) (sizeof(x)/sizeof((x)[0])) |
| 32 |
#define Accept8BitCtrl ((VTlevel >= 2) && (ts.TermFlag & TF_ACCEPT8BITCTRL)) |
#define Accept8BitCtrl ((VTlevel >= 2) && (ts.TermFlag & TF_ACCEPT8BITCTRL)) |
| 33 |
|
|
| 1369 |
ParseEscape(b); |
ParseEscape(b); |
| 1370 |
else if ((b>=0x80) && (b<=0x9F)) |
else if ((b>=0x80) && (b<=0x9F)) |
| 1371 |
ParseControl(b); |
ParseControl(b); |
| 1372 |
|
else if (b>=0xA0) { |
| 1373 |
|
ParseMode=ModeFirst; |
| 1374 |
|
ParseFirst(b); |
| 1375 |
|
} |
| 1376 |
|
|
| 1377 |
JustAfterESC = FALSE; |
JustAfterESC = FALSE; |
| 1378 |
} |
} |
| 2934 |
{ /* private char */ |
{ /* private char */ |
| 2935 |
if (FirstPrm) Prv = b; |
if (FirstPrm) Prv = b; |
| 2936 |
} |
} |
| 2937 |
|
else if (b>0xA0) { |
| 2938 |
|
ParseMode=ModeFirst; |
| 2939 |
|
ParseFirst(b); |
| 2940 |
|
} |
| 2941 |
} |
} |
| 2942 |
FirstPrm = FALSE; |
FirstPrm = FALSE; |
| 2943 |
} |
} |
|
|
Legend:
| Removed from v.4250 |
|
| changed lines |
| |
Added in v.4256 |
|
|
|