Add final #t to the generated code to allow for empty sieve scripts
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -805,7 +805,7 @@ | ... | @@ -805,7 +805,7 @@ |
805 | 805 | ||
806 | (define (sieve-code-finish) | 806 | (define (sieve-code-finish) |
807 | (if (not (null? sieve-exp)) | 807 | (if (not (null? sieve-exp)) |
808 | (set! sieve-code-list (append sieve-code-list sieve-exp)))) | 808 | (set! sieve-code-list (append sieve-code-list sieve-exp (list #t))))) |
809 | 809 | ||
810 | ;;; Print the program | 810 | ;;; Print the program |
811 | 811 | ... | ... |
-
Please register or sign in to post a comment