aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/bc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c
index 632158b7f..2237a41b5 100644
--- a/miscutils/bc.c
+++ b/miscutils/bc.c
@@ -2901,8 +2901,9 @@ static BC_STATUS zbc_lex_next(void)
2901 BcStatus s; 2901 BcStatus s;
2902 2902
2903 p->lex_last = p->lex; 2903 p->lex_last = p->lex;
2904 if (p->lex_last == XC_LEX_EOF) 2904//why?
2905 RETURN_STATUS(bc_error("end of file")); 2905// if (p->lex_last == XC_LEX_EOF)
2906// RETURN_STATUS(bc_error("end of file"));
2906 2907
2907 // Loop until failure or we don't have whitespace. This 2908 // Loop until failure or we don't have whitespace. This
2908 // is so the parser doesn't get inundated with whitespace. 2909 // is so the parser doesn't get inundated with whitespace.