URI: 
       tRemove debugging echos. - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit f6dc1628d6b08cf674f0484f42810e04cb9e6e36
   DIR parent be22ae2d0729f68672e3202c91cfe13c9e74cccc
  HTML Author: rsc <devnull@localhost>
       Date:   Fri, 26 Mar 2004 02:08:44 +0000
       
       Remove debugging echos.
       
       Diffstat:
         M src/cmd/9term/rcstart.c             |       7 +------
       
       1 file changed, 1 insertion(+), 6 deletions(-)
       ---
   DIR diff --git a/src/cmd/9term/rcstart.c b/src/cmd/9term/rcstart.c
       t@@ -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");