diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-09-10 21:26:16 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-09-10 21:26:16 +0900 |
commit | cfbf2bde4002821d12047b2aba0010739aaf925e (patch) | |
tree | 35a1cfc7228a2cef8733602fda023a9132c704ff /compile.c | |
parent | cb4e2cb55a59833fc4f1f6db2f3082d1ffcafc80 (diff) |
Remove unused argument
Diffstat (limited to 'compile.c')
-rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1633,7 +1633,7 @@ access_outer_variables(const rb_iseq_t *iseq, int level, ID id, bool write) if (isolated_depth && level >= isolated_depth) { if (id == rb_intern("yield")) { - COMPILE_ERROR(iseq, ISEQ_LAST_LINE(iseq), "can not yield from isolated Proc", rb_id2name(id)); + COMPILE_ERROR(iseq, ISEQ_LAST_LINE(iseq), "can not yield from isolated Proc"); } else { COMPILE_ERROR(iseq, ISEQ_LAST_LINE(iseq), "can not access variable `%s' from isolated Proc", rb_id2name(id)); |