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
This commit is contained in:
parent
79d33a5cfc
commit
c29ad01850
@ -1,3 +1,8 @@
|
|||||||
|
Sat Jul 23 04:06:04 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* include/ruby/ruby.h (RTEST, NIL_P): use RUBY prefixed name in
|
||||||
|
macros.
|
||||||
|
|
||||||
Sat Jul 23 01:41:29 2016 Eric Wong <e@80x24.org>
|
Sat Jul 23 01:41:29 2016 Eric Wong <e@80x24.org>
|
||||||
|
|
||||||
* lib/webrick/httpservlet/cgihandler.rb (do_GET): delete HTTP_PROXY
|
* lib/webrick/httpservlet/cgihandler.rb (do_GET): delete HTTP_PROXY
|
||||||
|
@ -439,8 +439,8 @@ enum ruby_special_consts {
|
|||||||
#endif
|
#endif
|
||||||
#define SYMBOL_FLAG RUBY_SYMBOL_FLAG
|
#define SYMBOL_FLAG RUBY_SYMBOL_FLAG
|
||||||
|
|
||||||
#define RTEST(v) !(((VALUE)(v) & ~Qnil) == 0)
|
#define RTEST(v) !(((VALUE)(v) & ~RUBY_Qnil) == 0)
|
||||||
#define NIL_P(v) !((VALUE)(v) != Qnil)
|
#define NIL_P(v) !((VALUE)(v) != RUBY_Qnil)
|
||||||
|
|
||||||
#define CLASS_OF(v) rb_class_of((VALUE)(v))
|
#define CLASS_OF(v) rb_class_of((VALUE)(v))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user