tacme: execute commands with / using shell - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit fea86f063930ea187f1c77e93207ac8d39125520
(DIR) parent 7603066e73d31aab84657bc4c0806f11856f672f
(HTM) 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:
M src/cmd/acme/exec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/cmd/acme/exec.c b/src/cmd/acme/exec.c
t@@ -1479,7 +1479,7 @@ runproc(void *argvp)
continue;
if(r < ' ')
goto Hard;
- if(utfrune("#;&|^$=`'{}()<>[]*?^~`", r))
+ if(utfrune("#;&|^$=`'{}()<>[]*?^~`/", r))
goto Hard;
inarg = TRUE;
}