Skip to content

Commit 447ccd2

Browse files
committed
Go back to not expanding while-statements in listing files.
This was only ever meant to be a temporary change.
1 parent f94370f commit 447ccd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

semantic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ static void TerminateWhile(SemanticState *state)
11991199

12001200
/* Process the WHILE's nested statements. */
12011201
for (source_line_list_node = source_line_list_head; source_line_list_node != NULL; source_line_list_node = source_line_list_node->next)
1202-
AssembleLine(state, &source_line_list_node->source_line_buffer, cc_true);
1202+
AssembleLine(state, &source_line_list_node->source_line_buffer, cc_false);
12031203
}
12041204

12051205
/* Increment past the ENDW line number. */

0 commit comments

Comments
 (0)