From 335b4efd2f5627b52290e0a6320bab4e6b3aa568 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 13 Dec 2018 17:46:26 +0100 Subject: bc: fix a thinko: dc uses [] string delimiters, bot bc! Signed-off-by: Denys Vlasenko --- miscutils/bc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'miscutils/bc.c') diff --git a/miscutils/bc.c b/miscutils/bc.c index dc9a7da8e..a78cd591a 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -7076,9 +7076,9 @@ static BC_STATUS zbc_vm_stdin(void) char c = *string; if (string != buf.v && string[-1] != '\\') { // checking applet type is cheaper than accessing sbgn/send - if (IS_DC) // dc: sbgn = send = '"' + if (IS_BC) // bc: sbgn = send = '"' str ^= (c == '"'); - else { // bc: sbgn = '[', send = ']' + else { // dc: sbgn = '[', send = ']' if (c == ']') str -= 1; else if (c == '[') -- cgit v1.2.3