Skip to content

Commit

Permalink
Remove the phrase "contextual" where dynamic is meant
Browse files Browse the repository at this point in the history
Also make it more in line the with error from the JVM backend
  • Loading branch information
lizmat committed Oct 20, 2018
1 parent d8e0a52 commit 4582780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/frame.c
Expand Up @@ -1623,7 +1623,7 @@ void MVM_frame_binddynlex(MVMThreadContext *tc, MVMString *name, MVMObject *valu
if (!lex_reg) {
char *c_name = MVM_string_utf8_encode_C_string(tc, name);
char *waste[] = { c_name, NULL };
MVM_exception_throw_adhoc_free(tc, waste, "No contextual found with name '%s'",
MVM_exception_throw_adhoc_free(tc, waste, "Dynamic variable '%s' not found",
c_name);
}
switch (type) {
Expand Down

0 comments on commit 4582780

Please sign in to comment.