This commit is contained in:
S-H-GAMELINKS 2022-11-22 21:49:54 +09:00 коммит произвёл Nobuyoshi Nakada
Родитель 2c939458ca
Коммит 040e0c8d67
4 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -50,7 +50,7 @@ VALUE
rb_invcmp(VALUE x, VALUE y)
{
VALUE invcmp = rb_exec_recursive(invcmp_recursive, x, y);
if (UNDEF_P(invcmp) || NIL_P(invcmp)) {
if (NIL_OR_UNDEF_P(invcmp)) {
return Qnil;
}
else {

2
dir.c
Просмотреть файл

@ -2932,7 +2932,7 @@ dir_globs(VALUE args, VALUE base, int flags)
static VALUE
dir_glob_option_base(VALUE base)
{
if (UNDEF_P(base) || NIL_P(base)) {
if (NIL_OR_UNDEF_P(base)) {
return Qnil;
}
#if USE_OPENDIR_AT

Просмотреть файл

@ -2084,7 +2084,7 @@ name_err_mesg_to_str(VALUE obj)
break;
default:
d = rb_protect(name_err_mesg_receiver_name, obj, &state);
if (state || UNDEF_P(d) || NIL_P(d))
if (state || NIL_OR_UNDEF_P(d))
d = rb_protect(rb_inspect, obj, &state);
if (state) {
rb_set_errinfo(Qnil);

2
io.c
Просмотреть файл

@ -1424,7 +1424,7 @@ rb_io_wait(VALUE io, VALUE events, VALUE timeout)
struct timeval tv_storage;
struct timeval *tv = NULL;
if (timeout == Qnil || UNDEF_P(timeout)) {
if (NIL_OR_UNDEF_P(timeout)) {
timeout = fptr->timeout;
}