From 524817bb0b9e149faccc8020f6c4160e9e0bd8cc Mon Sep 17 00:00:00 2001 From: sorah Date: Tue, 18 Mar 2014 14:22:23 +0000 Subject: * vm_eval.c (eval_string_with_cref): Unify to use NIL_P. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_eval.c') diff --git a/vm_eval.c b/vm_eval.c index 5ae3e78b92..7b11e38d84 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -1223,7 +1223,7 @@ eval_string_with_cref(VALUE self, VALUE src, VALUE scope, NODE *const cref_arg, bind = Check_TypedStruct(scope, &ruby_binding_data_type); { envval = bind->env; - if (absolute_path == Qnil && !NIL_P(bind->path)) { + if (NIL_P(absolute_path) && !NIL_P(bind->path)) { file = bind->path; line = bind->first_lineno; absolute_path = rb_current_realfilepath(); -- cgit v1.2.3