aboutsummaryrefslogtreecommitdiffstats
path: root/vm_eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/vm_eval.c b/vm_eval.c
index c3a16d1918..5ae3e78b92 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1215,14 +1215,15 @@ eval_string_with_cref(VALUE self, VALUE src, VALUE scope, NODE *const cref_arg,
VALUE absolute_path = Qnil;
VALUE fname;
+ if (file != Qundef) {
+ absolute_path = file;
+ }
+
if (scope != Qnil) {
bind = Check_TypedStruct(scope, &ruby_binding_data_type);
{
envval = bind->env;
- if (file != Qundef) {
- absolute_path = file;
- }
- else if (!NIL_P(bind->path)) {
+ if (absolute_path == Qnil && !NIL_P(bind->path)) {
file = bind->path;
line = bind->first_lineno;
absolute_path = rb_current_realfilepath();