aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/bc.c69
1 files changed, 34 insertions, 35 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c
index 74847a328..bc2947161 100644
--- a/miscutils/bc.c
+++ b/miscutils/bc.c
@@ -7058,50 +7058,49 @@ static BC_STATUS zbc_vm_stdin(void)
7058 comment = false; 7058 comment = false;
7059 str = 0; 7059 str = 0;
7060 for (;;) { 7060 for (;;) {
7061 size_t len; 7061 char *string;
7062 7062
7063 bc_read_line(&buf); 7063 bc_read_line(&buf);
7064 len = buf.len - 1; 7064 if (buf.len <= 1) // "" buf means EOF
7065 if (len == 0) // "" buf means EOF
7066 break; 7065 break;
7067 if (len == 1) { 7066
7068 if (str && buf.v[0] == G.send) 7067 string = buf.v;
7069 str -= 1; 7068 while (*string) {
7070 else if (buf.v[0] == G.sbgn) 7069 char c = *string;
7071 str += 1; 7070 if (string == buf.v || string[-1] != '\\') {
7072 } else { 7071 // checking applet type is cheaper than accessing sbgn/send
7073 char *string = buf.v; 7072 if (IS_BC) // bc: sbgn = send = '"'
7074 while (*string) { 7073 str ^= (c == '"');
7075 char c = *string; 7074 else { // dc: sbgn = '[', send = ']'
7076 if (string == buf.v || string[-1] != '\\') { 7075 if (c == ']')
7077 // checking applet type is cheaper than accessing sbgn/send 7076 str -= 1;
7078 if (IS_BC) // bc: sbgn = send = '"' 7077 else if (c == '[')
7079 str ^= (c == '"'); 7078 str += 1;
7080 else { // dc: sbgn = '[', send = ']'
7081 if (c == ']')
7082 str -= 1;
7083 else if (c == '[')
7084 str += 1;
7085 }
7086 }
7087 string++;
7088 if (c == '/' && *string == '*') {
7089 comment = true;
7090 string++;
7091 continue;
7092 }
7093 if (c == '*' && *string == '/') {
7094 comment = false;
7095 string++;
7096 } 7079 }
7097 } 7080 }
7098 if (str || comment || string[-2] == '\\') { 7081 string++;
7099 bc_vec_concat(&buffer, buf.v); 7082 if (c == '/' && *string == '*') {
7083 comment = true;
7084 string++;
7100 continue; 7085 continue;
7101 } 7086 }
7087 if (c == '*' && *string == '/') {
7088 comment = false;
7089 string++;
7090 }
7102 } 7091 }
7103
7104 bc_vec_concat(&buffer, buf.v); 7092 bc_vec_concat(&buffer, buf.v);
7093 if (str || comment)
7094 continue;
7095
7096 // Check for backslash+newline.
7097 // we do not check that last char is '\n' -
7098 // if it is not, then it's EOF, and looping back
7099 // to bc_read_line() will detect it:
7100 string -= 2;
7101 if (string >= buf.v && *string == '\\')
7102 continue;
7103
7105 s = zbc_vm_process(buffer.v); 7104 s = zbc_vm_process(buffer.v);
7106 if (s) { 7105 if (s) {
7107 if (ENABLE_FEATURE_CLEAN_UP && !G_ttyin) { 7106 if (ENABLE_FEATURE_CLEAN_UP && !G_ttyin) {