diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-13 10:13:40 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-13 10:13:40 +0000 |
| commit | 2a22cbfcf08c25053642340f055807ef11b65e78 (patch) | |
| tree | 4cd38cd9d39213a9c9cb5e07a53bbf53da270506 /parse.y | |
| parent | 0238ad4d7a5419ec386daa64786c9393221181fb (diff) | |
| download | ruby-2a22cbfcf08c25053642340f055807ef11b65e78.tar.gz ruby-2a22cbfcf08c25053642340f055807ef11b65e78.tar.xz ruby-2a22cbfcf08c25053642340f055807ef11b65e78.zip | |
* parse.y (token_info_pop): show source filename. [ruby-dev:36710]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); |
