summaryrefslogtreecommitdiffstats
path: root/variable.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-24 05:18:47 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-24 05:18:47 +0000
commit242d1879f3105377fe1153a21043bebbbaa7b208 (patch)
tree425980c3ebfb78d38067b3b01f2df97a9dc0853d /variable.c
parent3e278b0745c94b5bba04c680778b21b6a0d785d9 (diff)
downloadruby-242d1879f3105377fe1153a21043bebbbaa7b208.tar.gz
ruby-242d1879f3105377fe1153a21043bebbbaa7b208.tar.xz
ruby-242d1879f3105377fe1153a21043bebbbaa7b208.zip
* eval.c (thgroup_add): no warning for terminated threads.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/variable.c b/variable.c
index 77c1c3724..76c0939c4 100644
--- a/variable.c
+++ b/variable.c
@@ -1548,6 +1548,9 @@ rb_define_const(klass, name, val)
{
ID id = rb_intern(name);
+ if (!rb_is_const_id(id)) {
+ rb_warn("rb_define_const: invalide name `%s' for constant", name);
+ }
if (klass == rb_cObject) {
rb_secure(4);
}