Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/ttpset/ttset.c

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

revision 3485 by doda, Mon Jun 15 02:39:48 2009 UTC revision 3501 by doda, Tue Jun 16 07:43:31 2009 UTC
# Line 1311  void FAR PASCAL ReadIniFile(PCHAR FName, Line 1311  void FAR PASCAL ReadIniFile(PCHAR FName,
1311          // Window report sequence          // Window report sequence
1312          if (GetOnOff(Section, "TitleReportSequence", FName, TRUE))          if (GetOnOff(Section, "TitleReportSequence", FName, TRUE))
1313                  ts->WindowFlag |= WF_TITLEREPORT;                  ts->WindowFlag |= WF_TITLEREPORT;
1314    
1315            // Line at a time mode
1316            ts->EnableLineMode = GetOnOff(Section, "EnableLineMode", FName, TRUE);
1317  }  }
1318    
1319  void FAR PASCAL WriteIniFile(PCHAR FName, PTTSet ts)  void FAR PASCAL WriteIniFile(PCHAR FName, PTTSet ts)
# Line 2275  void FAR PASCAL WriteIniFile(PCHAR FName Line 2278  void FAR PASCAL WriteIniFile(PCHAR FName
2278          // Title report sequence          // Title report sequence
2279          WriteOnOff(Section, "TitleReportSequence", FName,          WriteOnOff(Section, "TitleReportSequence", FName,
2280                  ts->WindowFlag & WF_TITLEREPORT);                  ts->WindowFlag & WF_TITLEREPORT);
2281    
2282            // Line at a time mode
2283            WriteOnOff(Section, "EnableLineMode", FName, ts->EnableLineMode);
2284  }  }
2285    
2286  #define VTEditor "VT editor keypad"  #define VTEditor "VT editor keypad"

Legend:
Removed from v.3485  
changed lines
  Added in v.3501

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