summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-13 03:10:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-13 03:10:24 +0000
commit358ae766401ee91d81c34b60447e83f757b4b1ff (patch)
tree53d696b2e4ae43b570d99ceda1633693a262fc7a /include
parent190d7d94a6421d1778e81770f8794f855ebd630d (diff)
downloadruby-358ae766401ee91d81c34b60447e83f757b4b1ff.tar.gz
ruby-358ae766401ee91d81c34b60447e83f757b4b1ff.tar.xz
ruby-358ae766401ee91d81c34b60447e83f757b4b1ff.zip
* include/ruby/ruby.h (rb_special_const_p): fixed typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/ruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index 6de6ba02e..d027c5567 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -1270,7 +1270,7 @@ rb_type(VALUE obj)
#ifdef __GNUC__
#define rb_special_const_p(obj) \
- __extension__ ({VALUE special_const_obj = (obj); (int)(SPECIAL_CONST_P(obj) ? Qtrue : Qfalse);})
+ __extension__ ({VALUE special_const_obj = (obj); (int)(SPECIAL_CONST_P(special_const_obj) ? Qtrue : Qfalse);})
#else
static inline int
rb_special_const_p(VALUE obj)