bc: further simplification in zbc_vm_stdin()

function                                             old     new   delta
bc_vm_run                                            500     523     +23
bc_vec_concat                                         66       -     -66
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 1/0 up/down: 23/-66)            Total: -43 bytes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-12-13 18:16:39 +01:00
parent 818b602c88
commit b7e61e3e4a

View File

@ -7058,19 +7058,13 @@ static BC_STATUS zbc_vm_stdin(void)
comment = false;
str = 0;
for (;;) {
size_t len;
char *string;
bc_read_line(&buf);
len = buf.len - 1;
if (len == 0) // "" buf means EOF
if (buf.len <= 1) // "" buf means EOF
break;
if (len == 1) {
if (str && buf.v[0] == G.send)
str -= 1;
else if (buf.v[0] == G.sbgn)
str += 1;
} else {
char *string = buf.v;
string = buf.v;
while (*string) {
char c = *string;
if (string == buf.v || string[-1] != '\\') {
@ -7095,13 +7089,18 @@ static BC_STATUS zbc_vm_stdin(void)
string++;
}
}
if (str || comment || string[-2] == '\\') {
bc_vec_concat(&buffer, buf.v);
if (str || comment)
continue;
// Check for backslash+newline.
// we do not check that last char is '\n' -
// if it is not, then it's EOF, and looping back
// to bc_read_line() will detect it:
string -= 2;
if (string >= buf.v && *string == '\\')
continue;
}
}
bc_vec_concat(&buffer, buf.v);
s = zbc_vm_process(buffer.v);
if (s) {
if (ENABLE_FEATURE_CLEAN_UP && !G_ttyin) {