Comparing ray/src/common/image.c (file contents):
Revision 2.18 by schorsch, Thu Jun 26 00:58:09 2003 UTC vs.
Revision 2.21 by greg, Sun Sep 7 05:32:02 2003 UTC
| 394 |
|
int na; |
| 395 |
|
int nvopts = 0; |
| 396 |
|
|
| 397 |
+ |
while (*s == ' ') |
| 398 |
+ |
s++; |
| 399 |
|
if (*s != '-') |
| 400 |
|
s = sskip2(s,1); |
| 401 |
|
while (*s) { |
| 402 |
|
ac = 0; |
| 403 |
|
do { |
| 404 |
< |
av[ac++] = s; |
| 404 |
> |
if (ac || *s == '-') |
| 405 |
> |
av[ac++] = s; |
| 406 |
|
while (*s && *s != ' ') |
| 407 |
|
s++; |
| 408 |
|
while (*s == ' ') |
Diff Legend
| – |
Removed lines |
| + |
Added lines |
| < |
Changed lines (old) |
| > |
Changed lines (new) |