Mercurial > hg > index.cgi
comparison lwasm/pseudo.c @ 63:74b82202d355
Make for condition clearer
author | lost@l-w.ca |
---|---|
date | Thu, 07 Apr 2011 18:44:43 -0600 |
parents | 5b10ff307463 |
children | 3d50022e16e7 |
comparison
equal
deleted
inserted
replaced
62:5b10ff307463 | 63:74b82202d355 |
---|---|
983 if (**p == '"' || **p == '\'') | 983 if (**p == '"' || **p == '\'') |
984 { | 984 { |
985 delim = **p; | 985 delim = **p; |
986 (*p)++; | 986 (*p)++; |
987 | 987 |
988 for (p2 = *p; *p2 && *p2 != delim; p2++) | 988 for (p2 = *p; *p2 && (*p2 != delim); p2++) |
989 /* do nothing */ ; | 989 /* do nothing */ ; |
990 } | 990 } |
991 else | 991 else |
992 { | 992 { |
993 for (p2 = *p; *p2 && !isspace(*p2); p2++) | 993 for (p2 = *p; *p2 && !isspace(*p2); p2++) |