diff options
-rw-r--r-- | miscutils/bc.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 63b745dc7..78c64355b 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -7005,11 +7005,10 @@ err: | |||
7005 | 7005 | ||
7006 | static BcStatus bc_vm_stdin(void) | 7006 | static BcStatus bc_vm_stdin(void) |
7007 | { | 7007 | { |
7008 | BcStatus s = BC_STATUS_SUCCESS; | 7008 | BcStatus s; |
7009 | BcVec buf, buffer; | 7009 | BcVec buf, buffer; |
7010 | char c; | ||
7011 | size_t len, i, str = 0; | 7010 | size_t len, i, str = 0; |
7012 | bool comment = false, notend; | 7011 | bool comment = false; |
7013 | 7012 | ||
7014 | G.prog.file = bc_program_stdin_name; | 7013 | G.prog.file = bc_program_stdin_name; |
7015 | bc_lex_file(&G.prs.l, bc_program_stdin_name); | 7014 | bc_lex_file(&G.prs.l, bc_program_stdin_name); |
@@ -7022,7 +7021,7 @@ static BcStatus bc_vm_stdin(void) | |||
7022 | // with a backslash to the parser. The reason for that is because the parser | 7021 | // with a backslash to the parser. The reason for that is because the parser |
7023 | // treats a backslash+newline combo as whitespace, per the bc spec. In that | 7022 | // treats a backslash+newline combo as whitespace, per the bc spec. In that |
7024 | // case, and for strings and comments, the parser will expect more stuff. | 7023 | // case, and for strings and comments, the parser will expect more stuff. |
7025 | for (s = bc_read_line(&buf, ">>> "); !s; s = bc_read_line(&buf, ">>> ")) { | 7024 | while ((s = bc_read_line(&buf, ">>> ")) == BC_STATUS_SUCCESS) { |
7026 | 7025 | ||
7027 | char *string = buf.v; | 7026 | char *string = buf.v; |
7028 | 7027 | ||
@@ -7038,8 +7037,8 @@ static BcStatus bc_vm_stdin(void) | |||
7038 | 7037 | ||
7039 | for (i = 0; i < len; ++i) { | 7038 | for (i = 0; i < len; ++i) { |
7040 | 7039 | ||
7041 | notend = len > i + 1; | 7040 | bool notend = len > i + 1; |
7042 | c = string[i]; | 7041 | char c = string[i]; |
7043 | 7042 | ||
7044 | if (i - 1 > len || string[i - 1] != '\\') { | 7043 | if (i - 1 > len || string[i - 1] != '\\') { |
7045 | if (G.sbgn == G.send) | 7044 | if (G.sbgn == G.send) |