From 20ed75a6399ca74786984b1d6ca7ccd21eb765cd Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 13 Oct 2008 10:13:40 +0000 Subject: * parse.y (token_info_pop): show source filename. [ruby-dev:36710] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index f60d248c26..4adf43e871 100644 --- a/parse.y +++ b/parse.y @@ -4856,8 +4856,9 @@ token_info_pop(struct parser_params *parser, const char *token) if (token_info_has_nonspaces(parser, token) || ptinfo->nonspc) { /* SKIP */ goto finish; } - rb_warning("mismatched indentations: line %d:'%s' and line %d:'%s'", - ptinfo->linenum, ptinfo->token, linenum, token); + rb_compile_warning(ruby_sourcefile, linenum, + "mismatched indentations at '%s' with '%s' at %d", + token, ptinfo->token, ptinfo->linenum); finish: xfree(ptinfo); -- cgit v1.2.3