Report missing operand. There is an implicit assumption that there was a previous argument, and (args-1) is valid. */
| 537 | There is an implicit assumption that there was a previous argument, |
| 538 | and (args-1) is valid. */ |
| 539 | static void |
| 540 | require_more_args (void) |
| 541 | { |
| 542 | if (nomoreargs ()) |
| 543 | error (EXPR_INVALID, 0, _("syntax error: missing argument after %s"), |
| 544 | quotearg_n_style (0, locale_quoting_style, *(args - 1))); |
| 545 | } |
| 546 | |
| 547 | |
| 548 | #ifdef EVAL_TRACE |
no test coverage detected