Slightly more efficient version of previous change.

This commit is contained in:
Christopher Faylor 2000-07-16 04:37:43 +00:00
parent 01e6597b1c
commit 2768430b64
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ build_argv (char *cmd, char **&argv, int &argc, int winshell)
/* Skip over characters until the closing quote */
{
sawquote = cmd;
cmd = quoted (cmd, argc > 0 && winshell);
cmd = quoted (cmd, winshell && argc > 0);
}
if (issep (*cmd)) // End of argument if space
break;