From 8497a7b9187a05210a4f6b842d06d1268d704d35 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 20 Dec 2012 09:29:57 +0000 Subject: ruby.h: RTEST NIL_P * include/ruby/ruby.h (RTEST, NIL_P): make bare expressions without outermost parentheses. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/ruby/ruby.h') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index b39cbf7864..0a1d29a1fe 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -442,8 +442,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) & ~Qnil) == 0) +#define NIL_P(v) !((VALUE)(v) != Qnil) #define CLASS_OF(v) rb_class_of((VALUE)(v)) -- cgit v1.2.3