1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix the exception when CPDEBUG

This commit is contained in:
Nobuyoshi Nakada 2019-10-23 02:04:36 +09:00
parent 801a11d0ab
commit afab8122c3
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -391,7 +391,10 @@ append_compile_error(const rb_iseq_t *iseq, int line, const char *fmt, ...)
else if (!err_info) {
RB_OBJ_WRITE(iseq, &ISEQ_COMPILE_DATA(iseq)->err_info, Qtrue);
}
if (compile_debug) rb_exc_fatal(err);
if (compile_debug) {
if (SPECIAL_CONST_P(err)) err = rb_eSyntaxError;
rb_exc_fatal(err);
}
}
#if 0