aboutsummaryrefslogtreecommitdiffstats
path: root/symbol.c
diff options
context:
space:
mode:
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;