aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-03-26 02:08:44 +0000
committerrsc <devnull@localhost>2004-03-26 02:08:44 +0000
commitf6dc1628d6b08cf674f0484f42810e04cb9e6e36 (patch)
tree1ab81e90d644c3faaedc6b886cbb147cbe3dd776
parentbe22ae2d0729f68672e3202c91cfe13c9e74cccc (diff)
downloadplan9port-f6dc1628d6b08cf674f0484f42810e04cb9e6e36.tar.gz
plan9port-f6dc1628d6b08cf674f0484f42810e04cb9e6e36.tar.bz2
plan9port-f6dc1628d6b08cf674f0484f42810e04cb9e6e36.zip
Remove debugging echos.
-rw-r--r--src/cmd/9term/rcstart.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/cmd/9term/rcstart.c b/src/cmd/9term/rcstart.c
index a6a72fe6..ec168e99 100644
--- a/src/cmd/9term/rcstart.c
+++ b/src/cmd/9term/rcstart.c
@@ -35,12 +35,7 @@ rcstart(int argc, char **argv, int *pfd)
dup(sfd, 0);
dup(sfd, 1);
dup(sfd, 2);
-// system("stty tabs -onlcr -echo erase '^h' intr '^?'");
- system("echo tabs; stty tabs");
- system("echo onlcr; stty -onlcr");
- system("echo echo; stty -echo");
- system("echo erase; stty erase '^h'");
- system("echo intr; stty intr '^?'");
+ system("stty tabs -onlcr -echo erase '^h' intr '^?'");
execvp(argv[0], argv);
fprint(2, "exec %s failed: %r\n", argv[0]);
_exits("oops");