plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit fea86f063930ea187f1c77e93207ac8d39125520
parent 7603066e73d31aab84657bc4c0806f11856f672f
Author: Marius Eriksen <marius.eriksen@gmail.com>
Date:   Fri,  6 Sep 2013 16:23:49 -0400

acme: execute commands with / using shell

This allows commands in bin subdirectories.

R=rsc
CC=plan9port.codebot
https://codereview.appspot.com/13254044

Diffstat:
Msrc/cmd/acme/exec.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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; }