aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/bc.c20
1 files changed, 6 insertions, 14 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c
index 918cf4638..8685f2c8e 100644
--- a/miscutils/bc.c
+++ b/miscutils/bc.c
@@ -3489,7 +3489,7 @@ static BC_STATUS zcommon_parse(BcParse *p)
3489 IF_DC(RETURN_STATUS(zdc_parse_parse(p));) 3489 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3490} 3490}
3491 3491
3492static BC_STATUS zbc_parse_text(BcParse *p, const char *text) 3492static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
3493{ 3493{
3494 BcStatus s; 3494 BcStatus s;
3495 3495
@@ -3507,7 +3507,7 @@ static BC_STATUS zbc_parse_text(BcParse *p, const char *text)
3507 RETURN_STATUS(zbc_lex_text(&p->l, text)); 3507 RETURN_STATUS(zbc_lex_text(&p->l, text));
3508} 3508}
3509#if ERRORS_ARE_FATAL 3509#if ERRORS_ARE_FATAL
3510# define zbc_parse_text(...) (zbc_parse_text(__VA_ARGS__), BC_STATUS_SUCCESS) 3510# define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__), BC_STATUS_SUCCESS)
3511#endif 3511#endif
3512 3512
3513// Called when parsing or execution detects a failure, 3513// Called when parsing or execution detects a failure,
@@ -5394,7 +5394,7 @@ static BC_STATUS zbc_program_read(void)
5394 bc_parse_create(&parse, BC_PROG_READ); 5394 bc_parse_create(&parse, BC_PROG_READ);
5395 bc_lex_file(&parse.l); 5395 bc_lex_file(&parse.l);
5396 5396
5397 s = zbc_parse_text(&parse, buf.v); 5397 s = zbc_parse_text_init(&parse, buf.v);
5398 if (s) goto exec_err; 5398 if (s) goto exec_err;
5399 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD); 5399 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
5400 if (s) goto exec_err; 5400 if (s) goto exec_err;
@@ -6593,7 +6593,7 @@ static BC_STATUS zbc_program_execStr(char *code, size_t *bgn,
6593 6593
6594 if (f->code.len == 0) { 6594 if (f->code.len == 0) {
6595 bc_parse_create(&prs, fidx); 6595 bc_parse_create(&prs, fidx);
6596 s = zbc_parse_text(&prs, *str); 6596 s = zbc_parse_text_init(&prs, *str);
6597 if (s) goto err; 6597 if (s) goto err;
6598 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL); 6598 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
6599 if (s) goto err; 6599 if (s) goto err;
@@ -6919,7 +6919,7 @@ static unsigned bc_vm_envLen(const char *var)
6919 6919
6920static BC_STATUS zbc_vm_process(const char *text) 6920static BC_STATUS zbc_vm_process(const char *text)
6921{ 6921{
6922 BcStatus s = zbc_parse_text(&G.prs, text); 6922 BcStatus s = zbc_parse_text_init(&G.prs, text);
6923 6923
6924 if (s) RETURN_STATUS(s); 6924 if (s) RETURN_STATUS(s);
6925 6925
@@ -7320,19 +7320,11 @@ static BC_STATUS zbc_vm_exec(void)
7320 7320
7321#if ENABLE_BC 7321#if ENABLE_BC
7322 if (option_mask32 & BC_FLAG_L) { 7322 if (option_mask32 & BC_FLAG_L) {
7323
7324 // We know that internal library is not buggy, 7323 // We know that internal library is not buggy,
7325 // thus error checking is normally disabled. 7324 // thus error checking is normally disabled.
7326# define DEBUG_LIB 0 7325# define DEBUG_LIB 0
7327 bc_lex_file(&G.prs.l); 7326 bc_lex_file(&G.prs.l);
7328 s = zbc_parse_text(&G.prs, bc_lib); 7327 ERROR_RETURN(s =) zbc_vm_process(bc_lib);
7329 if (DEBUG_LIB && s) RETURN_STATUS(s);
7330
7331 while (G.prs.l.t.t != BC_LEX_EOF) {
7332 ERROR_RETURN(s =) zcommon_parse(&G.prs);
7333 if (DEBUG_LIB && s) RETURN_STATUS(s);
7334 }
7335 s = zbc_program_exec();
7336 if (DEBUG_LIB && s) RETURN_STATUS(s); 7328 if (DEBUG_LIB && s) RETURN_STATUS(s);
7337 } 7329 }
7338#endif 7330#endif