stop posting output from .unixCmd()

This commit is contained in:
rob 2009-01-03 19:06:19 +00:00
parent 24f83b278b
commit dc5fbfe289
1 changed files with 2 additions and 2 deletions

View File

@ -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);