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

[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);