mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/transcode-tblgen.rb: set ERB source filename for error message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19016 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c6c4ce81c2
commit
ae80b4fac2
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Sep 1 14:37:58 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* tool/transcode-tblgen.rb: set ERB source filename for error message.
|
||||
|
||||
Mon Sep 1 14:37:02 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* enc/depend: transdb.c may not present.
|
||||
|
|
|
@ -728,7 +728,9 @@ if VERBOSE_MODE
|
|||
end
|
||||
|
||||
libs1 = $".dup
|
||||
erb_result = ERB.new(src, nil, '%').result(binding)
|
||||
erb = ERB.new(src, nil, '%')
|
||||
erb.filename = arg
|
||||
erb_result = erb.result(binding)
|
||||
libs2 = $".dup
|
||||
|
||||
libs = libs2 - libs1
|
||||
|
|
Loading…
Add table
Reference in a new issue