make changes for Tim Mooney

This commit is contained in:
Marty Kraimer
1998-04-23 17:25:20 +00:00
parent 946c3c7886
commit 8dca7ebe56
2 changed files with 4 additions and 4 deletions

View File

@@ -787,7 +787,7 @@ printf(") \n");
for (got_if=1; got_if>0 && *(post+1) != END_STACK; ++post) {
switch(post[1]) {
case LITERAL: post+=8; break;
case SLITERAL: while (*(++post)); break;
case SLITERAL: post++; while (post[1]) post++; break;
case COND_IF: got_if++; break;
case COND_ELSE: got_if--; break;
case FETCH: case SFETCH: post++; break;
@@ -804,7 +804,7 @@ printf(") \n");
for (got_if=1; got_if>0 && *(post+1) != END_STACK; ++post) {
switch(post[1]) {
case LITERAL: post+=8; break;
case SLITERAL: while (*(++post)); break;
case SLITERAL: post++; while (post[1]) post++; break;
case COND_IF: got_if++; break;
case COND_ELSE: got_if--; break;
case FETCH: case SFETCH: post++; break;

View File

@@ -787,7 +787,7 @@ printf(") \n");
for (got_if=1; got_if>0 && *(post+1) != END_STACK; ++post) {
switch(post[1]) {
case LITERAL: post+=8; break;
case SLITERAL: while (*(++post)); break;
case SLITERAL: post++; while (post[1]) post++; break;
case COND_IF: got_if++; break;
case COND_ELSE: got_if--; break;
case FETCH: case SFETCH: post++; break;
@@ -804,7 +804,7 @@ printf(") \n");
for (got_if=1; got_if>0 && *(post+1) != END_STACK; ++post) {
switch(post[1]) {
case LITERAL: post+=8; break;
case SLITERAL: while (*(++post)); break;
case SLITERAL: post++; while (post[1]) post++; break;
case COND_IF: got_if++; break;
case COND_ELSE: got_if--; break;
case FETCH: case SFETCH: post++; break;