aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-22 19:06:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-22 19:06:07 +0000
commit6cf9add19d90ad44a36ac4aac18a60b36219da28 (patch)
tree15de57598c596f63fe8fbb36b6c9bf47fa1d50b9 /include
parent1e1edbf0f2e4d5ddd6a1cf63d593bbd993bc796b (diff)
downloadruby-6cf9add19d90ad44a36ac4aac18a60b36219da28.tar.gz
ruby.h: use prefixed name
* include/ruby/ruby.h (RTEST, NIL_P): use RUBY prefixed name in macros. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/ruby.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index 983ea2760c..4156c113c8 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -439,8 +439,8 @@ enum ruby_special_consts {
#endif
#define SYMBOL_FLAG RUBY_SYMBOL_FLAG
-#define RTEST(v) !(((VALUE)(v) & ~Qnil) == 0)
-#define NIL_P(v) !((VALUE)(v) != Qnil)
+#define RTEST(v) !(((VALUE)(v) & ~RUBY_Qnil) == 0)
+#define NIL_P(v) !((VALUE)(v) != RUBY_Qnil)
#define CLASS_OF(v) rb_class_of((VALUE)(v))