From dc5fbfe28932c9084a5bc70c999dfe070b56f184 Mon Sep 17 00:00:00 2001 From: rob Date: Sat, 3 Jan 2009 19:06:19 +0000 Subject: [PATCH] stop posting output from .unixCmd() --- TextMate.sc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TextMate.sc b/TextMate.sc index ac858af..13e15e6 100755 --- a/TextMate.sc +++ b/TextMate.sc @@ -188,7 +188,7 @@ SC3Controller { var fname = "/tmp/" ++ Date.seed ++ ".sc"; File.use(fname, "w") { |f| f << out.collection.asString; - ("mate" + fname).unixCmd; + ("mate" + fname).unixCmd(postOutput: false); }; } { out.collection.newTextWindow(name.asString); @@ -211,7 +211,7 @@ SC3Controller { var fname = "/tmp/" ++ Date.seed ++ ".sc"; File.use(fname, "w") { |f| f << out.collection.asString; - ("mate" + fname).unixCmd; + ("mate" + fname).unixCmd(postOutput: false); }; } { out.collection.newTextWindow(name.asString);