X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fmodify-variables.c;h=d73b95e8a2236b25f7172efb57c673e1f8d309c1;hb=da1bf03a84fa10f04e8c5438f22b523f0480dd7d;hp=b9a8a28eecc06cad545030837b75fa893f919e8b;hpb=f7e9711f020ba507719f1f21cac04ae1199a4ac0;p=pspp diff --git a/src/language/dictionary/modify-variables.c b/src/language/dictionary/modify-variables.c index b9a8a28eec..d73b95e8a2 100644 --- a/src/language/dictionary/modify-variables.c +++ b/src/language/dictionary/modify-variables.c @@ -110,7 +110,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) if (already_encountered & 1) { - msg (SE, _("%s subcommand may be given at most once."), "REORDER"); + lex_sbc_only_once ("REORDER"); goto done; } already_encountered |= 1; @@ -143,7 +143,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) { if (!lex_match (lexer, T_LPAREN)) { - msg (SE, _("`(' expected on %s subcommand."), "REORDER"); + lex_error_expecting (lexer, "`('", NULL_SENTINEL); free (v); goto done; } @@ -155,8 +155,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) } if (!lex_match (lexer, T_RPAREN)) { - msg (SE, _("`)' expected following variable names on " - "REORDER subcommand.")); + lex_error_expecting (lexer, "`)'", NULL_SENTINEL); free (v); goto done; } @@ -174,7 +173,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) { if (already_encountered & 2) { - msg (SE, _("%s subcommand may be given at most once."), "RENAME"); + lex_sbc_only_once ("RENAME"); goto done; } already_encountered |= 2; @@ -187,7 +186,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) if (!lex_match (lexer, T_LPAREN)) { - msg (SE, _("`(' expected on %s subcommand."), "RENAME"); + lex_error_expecting (lexer, "`('", NULL_SENTINEL); goto done; } if (!parse_variables (lexer, dataset_dict (ds), @@ -196,8 +195,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) goto done; if (!lex_match (lexer, T_EQUALS)) { - msg (SE, _("`=' expected between lists of new and old variable " - "names on RENAME subcommand.")); + lex_error_expecting (lexer, "`='", NULL_SENTINEL); goto done; } if (!parse_DATA_LIST_vars (lexer, dataset_dict (ds), @@ -216,8 +214,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) } if (!lex_match (lexer, T_RPAREN)) { - msg (SE, _("`)' expected after variable lists on RENAME " - "subcommand.")); + lex_error_expecting (lexer, "`)'", NULL_SENTINEL); goto done; } } @@ -310,7 +307,7 @@ cmd_modify_vars (struct lexer *lexer, struct dataset *ds) break; if (lex_token (lexer) != T_SLASH) { - msg (SE, _("`/' or `.' expected.")); + lex_error_expecting (lexer, "`/'", "`.'", NULL_SENTINEL); goto done; } lex_get (lexer);