summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2015-05-09 15:32:51 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2015-05-09 15:32:51 -0700
commitdbd5a5a0bb017c13386dd0711383183c77f0880f (patch)
treee48e674710ddb247c2f47c6cbc6ce9d0f707cc08
parent5c1c8f3faf635fdfbfe66604bc21257c4b756710 (diff)
Fix comment
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index 31fa095..7e1c3d8 100644
--- a/tty.c
+++ b/tty.c
@@ -33,7 +33,7 @@ void tty_init(tty_t *tty, const char *tty_filename){
* Disable both of
* ICANON Canonical input (erase and kill processing).
* ECHO Enable echo.
- * ISIG Disable signals from control characters
+ * ISIG Enable signals from control characters
*/
new_termios.c_lflag &= ~(ICANON | ECHO | ISIG);