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

ruby-changes:25270

From: usa <ko1@a...>
Date: Thu, 25 Oct 2012 17:51:09 +0900 (JST)
Subject: [ruby-changes:25270] usa:r37322 (trunk): * win32/win32.c (has_redirection): should use shell (cmd.exe) when

usa	2012-10-25 17:50:55 +0900 (Thu, 25 Oct 2012)

  New Revision: 37322

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37322

  Log:
    * win32/win32.c (has_redirection): should use shell (cmd.exe) when
      the commandline containts '&'.
      reported by Roger Pack at [ruby-core:47912] [Bug #7143], and
      patched by Heesob Park at [ruby-core:47931].

  Modified files:
    trunk/ChangeLog
    trunk/win32/win32.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37321)
+++ ChangeLog	(revision 37322)
@@ -1,3 +1,10 @@
+Thu Oct 25 17:48:54 2012  NAKAMURA Usaku  <usa@r...>
+
+	* win32/win32.c (has_redirection): should use shell (cmd.exe) when
+	  the commandline containts '&'.
+	  reported by Roger Pack at [ruby-core:47912] [Bug #7143], and
+	  patched by Heesob Park at [ruby-core:47931].
+
 Thu Oct 25 15:00:08 2012  Koichi Sasada  <ko1@a...>
 
 	* include/ruby/ruby.h, class.c: remove (revert)
Index: win32/win32.c
===================================================================
--- win32/win32.c	(revision 37321)
+++ win32/win32.c	(revision 37322)
@@ -1446,6 +1446,7 @@
 	  case '>':
 	  case '<':
 	  case '|':
+	  case '&':
 	  case '\n':
 	    if (!quote)
 		return TRUE;

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

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