aboutsummaryrefslogtreecommitdiffstats
path: root/symbol.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 /symbol.c
parente26cf22ad5c7d772ecc0c195bfbc612f1bb1f5b6 (diff)
downloadegawk-6514b3a2f5ed8c593d7d49526a27122989e673d0.tar.gz
egawk-6514b3a2f5ed8c593d7d49526a27122989e673d0.tar.bz2
egawk-6514b3a2f5ed8c593d7d49526a27122989e673d0.zip
First round of message improvements.
Diffstat (limited to 'symbol.c')
-rw-r--r--symbol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/symbol.c b/symbol.c
index e2e07c30..5cbc4d35 100644
--- a/symbol.c
+++ b/symbol.c
@@ -688,7 +688,7 @@ check_param_names(void)
if (in_array(func_table, & n)) {
error(
- _("function `%s': can't use function `%s' as a parameter name"),
+ _("function `%s': cannot use function `%s' as a parameter name"),
list[i]->stptr,
f->fparms[j].param);
result = false;
@@ -818,7 +818,7 @@ pop_context()
assert(curr_ctxt != NULL);
if (curr_ctxt->prev == NULL)
- fatal(_("can not pop main context"));
+ fatal(_("cannot pop main context"));
ctxt = curr_ctxt->prev;
/* restore source and sourceline */
sourceline = ctxt->sourceline;