diff options
author | Marius Eriksen <marius.eriksen@gmail.com> | 2013-09-06 16:23:49 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2013-09-06 16:23:49 -0400 |
commit | fea86f063930ea187f1c77e93207ac8d39125520 (patch) | |
tree | bfbb4f6e01c8a5d94b3881474a4806ea82d5ffbc /src | |
parent | 7603066e73d31aab84657bc4c0806f11856f672f (diff) | |
download | plan9port-fea86f063930ea187f1c77e93207ac8d39125520.tar.gz plan9port-fea86f063930ea187f1c77e93207ac8d39125520.tar.bz2 plan9port-fea86f063930ea187f1c77e93207ac8d39125520.zip |
acme: execute commands with / using shell
This allows commands in bin subdirectories.
R=rsc
CC=plan9port.codebot
https://codereview.appspot.com/13254044
Diffstat (limited to 'src')
-rw-r--r-- | src/cmd/acme/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/acme/exec.c b/src/cmd/acme/exec.c index ae6668c6..59ae2286 100644 --- a/src/cmd/acme/exec.c +++ b/src/cmd/acme/exec.c @@ -1479,7 +1479,7 @@ runproc(void *argvp) continue; if(r < ' ') goto Hard; - if(utfrune("#;&|^$=`'{}()<>[]*?^~`", r)) + if(utfrune("#;&|^$=`'{}()<>[]*?^~`/", r)) goto Hard; inarg = TRUE; } |