summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-03-09 12:54:05 +0200
committerArnold D. Robbins <arnold@skeeve.com>2020-03-09 12:54:05 +0200
commit6514b3a2f5ed8c593d7d49526a27122989e673d0 (patch)
treeee1d50a6b52e633e1ba7617aeee4c7b667f3534a /array.c
parente26cf22ad5c7d772ecc0c195bfbc612f1bb1f5b6 (diff)
downloadgawk-6514b3a2f5ed8c593d7d49526a27122989e673d0.tar.gz
First round of message improvements.
Diffstat (limited to 'array.c')
-rw-r--r--array.c32
1 files changed, 13 insertions, 19 deletions
diff --git a/array.c b/array.c
index fa9c2d95..4a0d8569 100644
--- a/array.c
+++ b/array.c
@@ -779,7 +779,7 @@ do_adump(int nargs)
}
symbol = POP_PARAM();
if (symbol->type != Node_var_array)
- fatal(_("adump: first argument not an array"));
+ fatal(_("%s: first argument is not an array"), "adump");
ndump.type = Node_dump_array;
ndump.adepth = depth;
@@ -820,39 +820,33 @@ asort_actual(int nargs, sort_context_t ctxt)
if (nargs >= 2) { /* 2nd optional arg */
dest = POP_PARAM();
if (dest->type != Node_var_array) {
- fatal(ctxt == ASORT ?
- _("asort: second argument not an array") :
- _("asorti: second argument not an array"));
+ fatal(_("%s: second argument is not an array"),
+ ctxt == ASORT ? "asort" : "asorti");
}
}
array = POP_PARAM();
if (array->type != Node_var_array) {
- fatal(ctxt == ASORT ?
- _("asort: first argument not an array") :
- _("asorti: first argument not an array"));
+ fatal(_("%s: first argument is not an array"),
+ ctxt == ASORT ? "asort" : "asorti");
}
else if (array == symbol_table)
- fatal(ctxt == ASORT ?
- _("asort: first argument cannot be SYMTAB") :
- _("asorti: first argument cannot be SYMTAB"));
+ fatal(_("%s: first argument cannot be SYMTAB"),
+ ctxt == ASORT ? "asort" : "asorti");
else if (array == func_table)
- fatal(ctxt == ASORT ?
- _("asort: first argument cannot be FUNCTAB") :
- _("asorti: first argument cannot be FUNCTAB"));
+ fatal(_("%s: first argument cannot be FUNCTAB"),
+ ctxt == ASORT ? "asort" : "asorti");
if (dest != NULL) {
for (r = dest->parent_array; r != NULL; r = r->parent_array) {
if (r == array)
- fatal(ctxt == ASORT ?
- _("asort: cannot use a subarray of first arg for second arg") :
- _("asorti: cannot use a subarray of first arg for second arg"));
+ fatal(_("%s: cannot use a subarray of first argument for second argument"),
+ ctxt == ASORT ? "asort" : "asorti");
}
for (r = array->parent_array; r != NULL; r = r->parent_array) {
if (r == dest)
- fatal(ctxt == ASORT ?
- _("asort: cannot use a subarray of second arg for first arg") :
- _("asorti: cannot use a subarray of second arg for first arg"));
+ fatal(_("%s: cannot use a subarray of second argument for first argument"),
+ ctxt == ASORT ? "asort" : "asorti");
}
}