From 1546ffed499aa40e905485b00293fbb530d7ebd1 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_error.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'eval_error.c') diff --git a/eval_error.c b/eval_error.c index 82a69033b6..395b9b0196 100644 --- a/eval_error.c +++ b/eval_error.c @@ -22,8 +22,8 @@ warn_printf(const char *fmt, ...) static void error_pos(void) { - VALUE sourcefile = rb_sourcefilename(); - int sourceline = rb_sourceline(); + int sourceline; + VALUE sourcefile = rb_source_location(&sourceline); if (sourcefile) { ID caller_name; @@ -105,8 +105,8 @@ error_print(void) goto no_message; } if (NIL_P(errat)) { - const char *file = rb_sourcefile(); - int line = rb_sourceline(); + int line; + const char *file = rb_source_loc(&line); if (!file) warn_printf("%d", line); else if (!line) -- cgit v1.2.3