acme: execute commands with / using shell

This allows commands in bin subdirectories.

R=rsc
CC=plan9port.codebot
https://codereview.appspot.com/13254044
This commit is contained in:
Marius Eriksen 2013-09-06 16:23:49 -04:00 committed by Russ Cox
parent 7603066e73
commit fea86f0639

View file

@ -1479,7 +1479,7 @@ runproc(void *argvp)
continue; continue;
if(r < ' ') if(r < ' ')
goto Hard; goto Hard;
if(utfrune("#;&|^$=`'{}()<>[]*?^~`", r)) if(utfrune("#;&|^$=`'{}()<>[]*?^~`/", r))
goto Hard; goto Hard;
inarg = TRUE; inarg = TRUE;
} }