1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* tool/compile_prelude.rb: print "<internal:prelude>" instead of

"prelude.rb" on stack trace.  [ruby-dev:36129]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-09-10 14:07:13 +00:00
parent 22fe262119
commit a4a3c85558
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Sep 10 23:00:43 2008 Yusuke Endoh <mame@tsg.ne.jp>
* tool/compile_prelude.rb: print "<internal:prelude>" instead of
"prelude.rb" on stack trace. [ruby-dev:36129]
Wed Sep 10 21:09:32 2008 Masaki Suketa <masaki.suketa@nifty.ne.jp>
* test/win32ole/test_err_in_callback.rb: InternetExplorer should

View file

@ -64,7 +64,7 @@ tmp = ERB.new(<<'EOS', nil, '%').result(binding)
#include "vm_core.h"
% preludes.zip(lines_list).each_with_index {|(prelude, (setup_lines, lines)), i|
static const char prelude_name<%=i%>[] = <%=c_esc(File.basename(prelude))%>;
static const char prelude_name<%=i%>[] = <%=c_esc("<internal:" + File.basename(prelude, ".rb") + ">")%>;
static const char prelude_code<%=i%>[] =
% (setup_lines+lines).each {|line|
<%=line%>