Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/teraterm/vtterm.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 4250 by doda, Wed Dec 22 06:27:26 2010 UTC revision 4256 by doda, Thu Dec 23 14:55:44 2010 UTC
# Line 26  Line 26 
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    
# Line 1367  void EscapeSequence(BYTE b) Line 1369  void EscapeSequence(BYTE b)
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  }  }
# Line 2928  void ControlSequence(BYTE b) Line 2934  void ControlSequence(BYTE b)
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

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26