Merging
authorviric@mandarina
Sat, 06 Oct 2007 21:44:58 +0200
changeset 64 4db3a61ec257
parent 62 dea93836aba5 (current diff)
parent 63 6b37b0f2547b (diff)
child 65 107ab713b65b
Merging
dump.c
user_term.c
--- a/dump.c	Fri Oct 05 01:15:26 2007 +0200
+++ b/dump.c	Sat Oct 06 21:44:58 2007 +0200
@@ -9,7 +9,7 @@
 
 #include "main.h"
 
-const int should_dump = 1;
+const int should_dump = 0;
 
 void dump_line(const char *msg, ...)
 {
--- a/user_term.c	Fri Oct 05 01:15:26 2007 +0200
+++ b/user_term.c	Sat Oct 06 21:44:58 2007 +0200
@@ -31,7 +31,7 @@
     memcpy(&saved_tios, &tios, sizeof(struct termios));
     is_tios_saved = 1;
 
-    tios.c_lflag &= ~(ECHO | ECHONL | ICANON);
+    tios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG);
     /*cfmakeraw(&tios);*/
 
     res = tcsetattr(0, TCSANOW, &tios);