[DOC] RDoc now accepts other than magic numbers at rb_attr

This commit is contained in:
Nobuyoshi Nakada 2022-06-08 11:55:21 +09:00
parent bf4684d999
commit ccfbcc7302
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -2990,7 +2990,7 @@ Init_Exception(void)
rb_eLoadError = rb_define_class("LoadError", rb_eScriptError);
/* the path failed to load */
rb_attr(rb_eLoadError, rb_intern_const("path"), 1, 0, Qfalse);
rb_attr(rb_eLoadError, rb_intern_const("path"), TRUE, FALSE, FALSE);
rb_eNotImpError = rb_define_class("NotImplementedError", rb_eScriptError);