From 7cb1a184c862beebca7cd47d7383bf89628d48fc Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 10 Nov 2007 11:22:28 +0000 Subject: [PATCH] don't use 1.9 feature. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/compile_prelude.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tool/compile_prelude.rb b/tool/compile_prelude.rb index 1f67d4c396..ddc1731ab2 100644 --- a/tool/compile_prelude.rb +++ b/tool/compile_prelude.rb @@ -1,4 +1,5 @@ -*preludes, outfile = *ARGV +preludes = ARGV.dup +outfile = preludes.pop C_ESC = { "\\" => "\\\\",