diff options
-rw-r--r-- | miscutils/bc.c | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 1c1672c00..ff44293ab 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -992,6 +992,18 @@ static int bc_posix_error(const char *msg) | |||
992 | { | 992 | { |
993 | return bc_posix_error_fmt("%s", msg); | 993 | return bc_posix_error_fmt("%s", msg); |
994 | } | 994 | } |
995 | static int bc_POSIX_does_not_allow(const char *msg) | ||
996 | { | ||
997 | return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg); | ||
998 | } | ||
999 | static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg) | ||
1000 | { | ||
1001 | return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg); | ||
1002 | } | ||
1003 | static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg) | ||
1004 | { | ||
1005 | return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg); | ||
1006 | } | ||
995 | static int bc_error_bad_character(char c) | 1007 | static int bc_error_bad_character(char c) |
996 | { | 1008 | { |
997 | return bc_error_fmt("bad character '%c'", c); | 1009 | return bc_error_fmt("bad character '%c'", c); |
@@ -2938,8 +2950,8 @@ static BcStatus bc_lex_identifier(BcLex *l) | |||
2938 | match: | 2950 | match: |
2939 | // buf starts with keyword bc_lex_kws[i] | 2951 | // buf starts with keyword bc_lex_kws[i] |
2940 | l->t.t = BC_LEX_KEY_1st_keyword + i; | 2952 | l->t.t = BC_LEX_KEY_1st_keyword + i; |
2941 | if ((1 << i) & POSIX_KWORD_MASK) { | 2953 | if (!((1 << i) & POSIX_KWORD_MASK)) { |
2942 | s = bc_posix_error("POSIX does not allow the following keyword:"); // bc_lex_kws[i].name8 | 2954 | s = bc_posix_error_fmt("%sthe following keyword: '%.8s'", "POSIX does not allow ", bc_lex_kws[i].name8); |
2943 | if (s) return s; | 2955 | if (s) return s; |
2944 | } | 2956 | } |
2945 | 2957 | ||
@@ -2952,7 +2964,7 @@ static BcStatus bc_lex_identifier(BcLex *l) | |||
2952 | if (s) return s; | 2964 | if (s) return s; |
2953 | 2965 | ||
2954 | if (l->t.v.len > 2) | 2966 | if (l->t.v.len > 2) |
2955 | s = bc_posix_error("POSIX only allows one character names; the following is bad:"); // buf | 2967 | s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%s'", buf); |
2956 | 2968 | ||
2957 | return s; | 2969 | return s; |
2958 | } | 2970 | } |
@@ -3055,7 +3067,7 @@ static BcStatus bc_lex_token(BcLex *l) | |||
3055 | bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT); | 3067 | bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT); |
3056 | 3068 | ||
3057 | if (l->t.t == BC_LEX_OP_BOOL_NOT) { | 3069 | if (l->t.t == BC_LEX_OP_BOOL_NOT) { |
3058 | s = bc_posix_error("POSIX does not allow boolean operators; the following is bad:"); // "!" | 3070 | s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!"); |
3059 | if (s) return s; | 3071 | if (s) return s; |
3060 | } | 3072 | } |
3061 | 3073 | ||
@@ -3070,7 +3082,7 @@ static BcStatus bc_lex_token(BcLex *l) | |||
3070 | 3082 | ||
3071 | case '#': | 3083 | case '#': |
3072 | { | 3084 | { |
3073 | s = bc_posix_error("POSIX does not allow '#' script comments"); | 3085 | s = bc_POSIX_does_not_allow("'#' script comments"); |
3074 | if (s) return s; | 3086 | if (s) return s; |
3075 | 3087 | ||
3076 | bc_lex_lineComment(l); | 3088 | bc_lex_lineComment(l); |
@@ -3089,7 +3101,7 @@ static BcStatus bc_lex_token(BcLex *l) | |||
3089 | c2 = l->buf[l->i]; | 3101 | c2 = l->buf[l->i]; |
3090 | if (c2 == '&') { | 3102 | if (c2 == '&') { |
3091 | 3103 | ||
3092 | s = bc_posix_error("POSIX does not allow boolean operators; the following is bad:"); // "&&" | 3104 | s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&"); |
3093 | if (s) return s; | 3105 | if (s) return s; |
3094 | 3106 | ||
3095 | ++l->i; | 3107 | ++l->i; |
@@ -3152,7 +3164,7 @@ static BcStatus bc_lex_token(BcLex *l) | |||
3152 | s = bc_lex_number(l, c); | 3164 | s = bc_lex_number(l, c); |
3153 | else { | 3165 | else { |
3154 | l->t.t = BC_LEX_KEY_LAST; | 3166 | l->t.t = BC_LEX_KEY_LAST; |
3155 | s = bc_posix_error("POSIX does not allow a period ('.') as a shortcut for the last result"); | 3167 | s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result"); |
3156 | } | 3168 | } |
3157 | break; | 3169 | break; |
3158 | } | 3170 | } |
@@ -3279,7 +3291,7 @@ static BcStatus bc_lex_token(BcLex *l) | |||
3279 | c2 = l->buf[l->i]; | 3291 | c2 = l->buf[l->i]; |
3280 | 3292 | ||
3281 | if (c2 == '|') { | 3293 | if (c2 == '|') { |
3282 | s = bc_posix_error("POSIX does not allow boolean operators; the following is bad:"); // "||" | 3294 | s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||"); |
3283 | if (s) return s; | 3295 | if (s) return s; |
3284 | 3296 | ||
3285 | ++l->i; | 3297 | ++l->i; |
@@ -4213,7 +4225,7 @@ static BcStatus bc_parse_for(BcParse *p) | |||
4213 | if (p->l.t.t != BC_LEX_SCOLON) | 4225 | if (p->l.t.t != BC_LEX_SCOLON) |
4214 | s = bc_parse_expr(p, 0, bc_parse_next_for); | 4226 | s = bc_parse_expr(p, 0, bc_parse_next_for); |
4215 | else | 4227 | else |
4216 | s = bc_posix_error("POSIX does not allow an empty init expression in a for loop"); | 4228 | s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init"); |
4217 | 4229 | ||
4218 | if (s) return s; | 4230 | if (s) return s; |
4219 | if (p->l.t.t != BC_LEX_SCOLON) return bc_error_bad_token(); | 4231 | if (p->l.t.t != BC_LEX_SCOLON) return bc_error_bad_token(); |
@@ -4230,7 +4242,7 @@ static BcStatus bc_parse_for(BcParse *p) | |||
4230 | if (p->l.t.t != BC_LEX_SCOLON) | 4242 | if (p->l.t.t != BC_LEX_SCOLON) |
4231 | s = bc_parse_expr(p, BC_PARSE_REL, bc_parse_next_for); | 4243 | s = bc_parse_expr(p, BC_PARSE_REL, bc_parse_next_for); |
4232 | else | 4244 | else |
4233 | s = bc_posix_error("POSIX does not allow an empty condition expression in a for loop"); | 4245 | s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition"); |
4234 | 4246 | ||
4235 | if (s) return s; | 4247 | if (s) return s; |
4236 | if (p->l.t.t != BC_LEX_SCOLON) return bc_error_bad_token(); | 4248 | if (p->l.t.t != BC_LEX_SCOLON) return bc_error_bad_token(); |
@@ -4251,7 +4263,7 @@ static BcStatus bc_parse_for(BcParse *p) | |||
4251 | if (p->l.t.t != BC_LEX_RPAREN) | 4263 | if (p->l.t.t != BC_LEX_RPAREN) |
4252 | s = bc_parse_expr(p, 0, bc_parse_next_rel); | 4264 | s = bc_parse_expr(p, 0, bc_parse_next_rel); |
4253 | else | 4265 | else |
4254 | s = bc_posix_error("POSIX does not allow an empty update expression in a for loop"); | 4266 | s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update"); |
4255 | 4267 | ||
4256 | if (s) return s; | 4268 | if (s) return s; |
4257 | 4269 | ||
@@ -4899,7 +4911,7 @@ static BcStatus bc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next) | |||
4899 | ok: | 4911 | ok: |
4900 | 4912 | ||
4901 | if (!(flags & BC_PARSE_REL) && nrelops) { | 4913 | if (!(flags & BC_PARSE_REL) && nrelops) { |
4902 | s = bc_posix_error("POSIX does not allow comparison operators outside if or loops"); | 4914 | s = bc_POSIX_does_not_allow("comparison operators outside if or loops"); |
4903 | if (s) return s; | 4915 | if (s) return s; |
4904 | } | 4916 | } |
4905 | else if ((flags & BC_PARSE_REL) && nrelops > 1) { | 4917 | else if ((flags & BC_PARSE_REL) && nrelops > 1) { |