diff options
Diffstat (limited to 'miscutils')
| -rw-r--r-- | miscutils/bc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 3d26c39a7..9cc29f0ea 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
| @@ -1425,7 +1425,9 @@ static BcStatus bc_read_line(BcVec *vec) | |||
| 1425 | if (c == EOF) { | 1425 | if (c == EOF) { |
| 1426 | if (ferror(stdin)) | 1426 | if (ferror(stdin)) |
| 1427 | quit(); // this emits error message | 1427 | quit(); // this emits error message |
| 1428 | s = BC_STATUS_EOF; | 1428 | // If we had some input before EOF, do not report EOF yet: |
| 1429 | if (vec->len == 0) | ||
| 1430 | s = BC_STATUS_EOF; | ||
| 1429 | // Note: EOF does not append '\n', therefore: | 1431 | // Note: EOF does not append '\n', therefore: |
| 1430 | // printf 'print 123\n' | bc - works | 1432 | // printf 'print 123\n' | bc - works |
| 1431 | // printf 'print 123' | bc - fails (syntax error) | 1433 | // printf 'print 123' | bc - fails (syntax error) |
