This is the mail archive of the cygwin-developers@sourceware.cygnus.com mailing list for the Cygwin project. See the Cygwin home page for more information.
[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index] [Subject Index] [Author Index] [Thread Index]

Re: interpreter arguments bug



Thanks for catching this.  It's been fixed.

-chris

On Mon, Feb 15, 1999 at 05:47:53PM +0900, Kazuhiro Fujieda wrote:
>There is a trivial mistake in spawn_guts.
>
>--- spawn.cc-	Mon Feb 15 15:21:11 1999
>+++ spawn.cc	Mon Feb 15 15:21:30 1999
>@@ -358,7 +358,7 @@ spawn_guts (HANDLE hToken, const char * 
> 	one_line.prepend (" ", 1);
>       else
> 	{
>-	  one_line.prepend ("\" ", 1);
>+	  one_line.prepend ("\" ", 2);
> 	  one_line.prepend (arg1, strlen (arg1));
> 	  one_line.prepend (" \"", 2);
> 	}
>
>Scripts of which interpreter has an argument can't work
>because of this.