[#69616] [Ruby trunk - Feature #11258] add 'x' mode character for O_EXCL — cremno@...
Issue #11258 has been updated by cremno phobia.
3 messages
2015/06/16
[#69643] [Ruby trunk - Misc #11276] [RFC] compile.c: convert to use ccan/list — normalperson@...
Issue #11276 has been updated by Eric Wong.
3 messages
2015/06/17
[#69751] [Ruby trunk - Bug #11001] 2.2.1 Segmentation fault in reserve_stack() function. — kubo@...
Issue #11001 has been updated by Takehiro Kubo.
3 messages
2015/06/27
[ruby-core:69442] [Ruby trunk - Feature #11208] [PATCH] variable.c: remove generic ivar support for special constants
From:
ko1@...
Date:
2015-06-02 03:27:47 UTC
List:
ruby-core #69442
Issue #11208 has been updated by Koichi Sasada.
Good patch.
Before generic_ivar_set(), frozen check is already done.
So the following check should be redundant.
> if (rb_obj_frozen_p(obj)) rb_error_frozen("object");
It should be just
> if (rb_special_const_p(obj)) rb_bug("...");
----------------------------------------
Feature #11208: [PATCH] variable.c: remove generic ivar support for special constants
https://bugs.ruby-lang.org/issues/11208#change-52711
* Author: Eric Wong
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
variable.c: remove generic ivar support for special constants
Special constants are all frozen since [Feature #8923] and cannot
support ivars. Remove some unused code we had for supporting them.
Can somebody please sanity check this for me? Maybe I missed something,
but if not, I'll commit in a few days...
---Files--------------------------------
0001-variable.c-remove-generic-ivar-support-for-special-c.patch (2.79 KB)
--
https://bugs.ruby-lang.org/