diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-06-08 11:55:21 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-06-08 11:55:21 +0900 |
commit | ccfbcc730230fddeab6d7f8820c9d232117a07fd (patch) | |
tree | 0217f78774e9e5074203c342ecd50e1d33b3d10c /error.c | |
parent | bf4684d9992615b84781f0f688624c95e0ecaadb (diff) |
[DOC] RDoc now accepts other than magic numbers at `rb_attr`
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |