aboutsummaryrefslogtreecommitdiff
path: root/mac/Plumb.app/Contents/MacOS/plumb
diff options
context:
space:
mode:
Diffstat (limited to 'mac/Plumb.app/Contents/MacOS/plumb')
-rwxr-xr-xmac/Plumb.app/Contents/MacOS/plumb11
1 files changed, 1 insertions, 10 deletions
diff --git a/mac/Plumb.app/Contents/MacOS/plumb b/mac/Plumb.app/Contents/MacOS/plumb
index f98cd2e7..850ec0e0 100755
--- a/mac/Plumb.app/Contents/MacOS/plumb
+++ b/mac/Plumb.app/Contents/MacOS/plumb
@@ -10,14 +10,5 @@ IFS=$'\n'
for file in $($bin/macargv)
do
- # Blanks are problematic in filenames: just plumb
- # the file's content.
- if echo "$file" | grep -q " "
- then
- base=$(basename "$file" | sed 's/ /_/g')
- attr="action=showdata filename=/BadName/$base"
- cat $file | "$bin/plumb" -i -d edit -a "$attr"
- else
- "$bin/plumb" -d edit "$file"
- fi
+ $bin/macedit "$file"
done