Browse Subversion Repository
Diff of /trunk/teraterm/ttpset/ttset.c
Parent Directory
| Revision Log
| Patch
| 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 |
|
|
|