diff options
Diffstat (limited to 'symbol.c')
-rw-r--r-- | symbol.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |