From 43886f3804567d8330eb3797d40065e0e7001cf5 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 31 Oct 2015 01:02:26 +0000 Subject: use rb_source_loc and rb_source_location * error.c, eval.c, eval_error.c, gc.c, variable.c, vm.c, vm_eval.c, vm_trace.c: use rb_source_loc/rb_source_location instead of combination of rb_sourcefile/rb_sourcefilename and rb_sourceline. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index f598525261..e7f95deadb 100644 --- a/eval.c +++ b/eval.c @@ -476,7 +476,7 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause) { VALUE e; const char *file = 0; - volatile int line = 0; + int line; int nocause = 0; if (NIL_P(mesg)) { @@ -493,8 +493,7 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause) } exc_setup_cause(mesg, cause); - file = rb_sourcefile(); - if (file) line = rb_sourceline(); + file = rb_source_loc(&line); if (file && !NIL_P(mesg)) { VALUE at; if (sysstack_error_p(mesg)) { -- cgit v1.2.3