[前][次][番号順一覧][スレッド一覧]

ruby-changes:50100

From: nobu <ko1@a...>
Date: Mon, 5 Feb 2018 12:19:45 +0900 (JST)
Subject: [ruby-changes:50100] nobu:r62218 (trunk): vcs.rb: no meaningless splat

nobu	2018-02-05 12:19:39 +0900 (Mon, 05 Feb 2018)

  New Revision: 62218

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62218

  Log:
    vcs.rb: no meaningless splat

  Modified files:
    trunk/tool/vcs.rb
Index: tool/vcs.rb
===================================================================
--- tool/vcs.rb	(revision 62217)
+++ tool/vcs.rb	(revision 62218)
@@ -14,7 +14,7 @@ unless File.respond_to? :realpath https://github.com/ruby/ruby/blob/trunk/tool/vcs.rb#L14
 end
 
 def IO.pread(*args)
-  STDERR.puts(*args.inspect) if $DEBUG
+  STDERR.puts(args.inspect) if $DEBUG
   popen(*args) {|f|f.read}
 end
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]