eval.c: rename "rb_frozen_class_p" to "rb_class_modify_check"

Just refactoring.  Despite its name, the function does NOT return a
boolean but raises an exception when the class given is frozen.
I don't think the new name "rb_class_modify_check" is the best, but
it follows the precedeint "rb_ary_modify_check", and is definitely
better than "*_p".

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2018-07-27 13:57:14 +00:00
parent ceab460fca
commit ffb09d8e87
7 changed files with 12 additions and 9 deletions

2
eval.c
View file

@ -416,7 +416,7 @@ rb_mod_s_constants(int argc, VALUE *argv, VALUE mod)
* \ingroup class
*/
void
rb_frozen_class_p(VALUE klass)
rb_class_modify_check(VALUE klass)
{
if (SPECIAL_CONST_P(klass)) {
noclass: