Browse code

Fix comment

John Hawthorn authored on 09/05/2015 22:32:51
Showing 1 changed files

  • tty.c index 31fa095..7e1c3d8 100644
... ...
@@ -33,7 +33,7 @@ void tty_init(tty_t *tty, const char *tty_filename){
33 33
 	 * Disable both of
34 34
 	 * ICANON  Canonical input (erase and kill processing).
35 35
 	 * ECHO    Enable echo.
36
-	 * ISIG    Disable signals from control characters
36
+	 * ISIG    Enable signals from control characters
37 37
 	 */
38 38
 	new_termios.c_lflag &= ~(ICANON | ECHO | ISIG);
39 39