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 3666 by doda, Wed Oct 28 09:44:14 2009 UTC revision 3695 by doda, Sat Nov 21 12:52:05 2009 UTC
# Line 2692  BOOL NextParam(PCHAR Param, int *i, PCHA Line 2692  BOOL NextParam(PCHAR Param, int *i, PCHA
2692                  return FALSE;                  return FALSE;
2693          j = 0;          j = 0;
2694    
2695          while (Param[*i] == ' ')          while (Param[*i] == ' ' || Param[*i] == '\t')
2696                  (*i)++;                  (*i)++;
2697    
2698          Quoted = FALSE;          Quoted = FALSE;
2699          c = Param[*i];          c = Param[*i];
2700          (*i)++;          (*i)++;
2701          while ((c != 0) && (Quoted || (c != ' ')) &&          while ((c != 0) && (j < Size - 1) &&
2702                 (Quoted || (c != ';')) && (j < Size - 1)) {                 (Quoted || ((c != ' ') && (c != ';') && (c != '\t')))) {
2703                  if (c == '"')                  if (c == '"')
2704                          Quoted = !Quoted;                          Quoted = !Quoted;
2705                  Temp[j] = c;                  Temp[j] = c;

Legend:
Removed from v.3666  
changed lines
  Added in v.3695

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