diff options
author | rsc <devnull@localhost> | 2006-07-05 17:12:57 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-07-05 17:12:57 +0000 |
commit | e50b313e64aedca5b2640b92d31bdf9bfccd4b53 (patch) | |
tree | ceeaecf22b6877a4426b43ed4eb3a601b112bd26 /plumb | |
parent | 40227f1f68cfee2581725b55ff63bca255cb767b (diff) | |
download | plan9port-e50b313e64aedca5b2640b92d31bdf9bfccd4b53.tar.gz plan9port-e50b313e64aedca5b2640b92d31bdf9bfccd4b53.tar.bz2 plan9port-e50b313e64aedca5b2640b92d31bdf9bfccd4b53.zip |
allow _ - / in header file names
Diffstat (limited to 'plumb')
-rw-r--r-- | plumb/basic | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plumb/basic b/plumb/basic index ac463e40..15bfbf16 100644 --- a/plumb/basic +++ b/plumb/basic @@ -87,7 +87,7 @@ plumb client $editor # .h files are looked up in /usr/include and passed to edit type is text -data matches '([a-zA-Z¡-0-9]+\.h)('$addr')?' +data matches '([a-zA-Z¡-0-9/_\-]+\.h)('$addr')?' arg isfile /usr/include/$1 data set $file attr add addr=$3 @@ -96,7 +96,7 @@ plumb client $editor # .h files are looked up in /usr/local/include and passed to edit type is text -data matches '([a-zA-Z¡-0-9]+\.h)('$addr')?' +data matches '([a-zA-Z¡-0-9/_\-]+\.h)('$addr')?' arg isfile /usr/local/include/$1 data set $file attr add addr=$3 @@ -105,7 +105,7 @@ plumb client $editor # .h files are looked up in $plan9/include and passed to edit type is text -data matches '([a-zA-Z¡-0-9]+\.h)('$addr')?' +data matches '([a-zA-Z¡-0-9/_\-]+\.h)('$addr')?' arg isfile $plan9/include/$1 data set $file attr add addr=$3 @@ -114,7 +114,7 @@ plumb client $editor # .m files are looked up in /sys/module and passed to edit type is text -data matches '([a-zA-Z¡-0-9]+\.m)('$addr')?' +data matches '([a-zA-Z¡-0-9/_\-]+\.m)('$addr')?' arg isfile /sys/module/$1 data set $file attr add addr=$3 |