summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-01-02 19:22:21 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-01-02 19:22:21 +0000
commitccfeb316a674370778390dc3192045fbe18113fe (patch)
tree6604967151f3507e1236e021c61ea60c0db7aee1 /window.c
parent34b7810afe016695b7445a5acfa796423734db56 (diff)
Don't attempt to reset tty if it is dead.
Diffstat (limited to 'window.c')
-rw-r--r--window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.c b/window.c
index 366f80d3..61178610 100644
--- a/window.c
+++ b/window.c
@@ -1,4 +1,4 @@
-/* $Id: window.c,v 1.34 2007-12-06 10:04:43 nicm Exp $ */
+/* $Id: window.c,v 1.35 2008-01-02 19:22:21 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -47,7 +47,7 @@
* server poll loop. Output data is received from pty's in screen format,
* translated and returned as a series of escape sequences and strings via
* input_parse (in input.c). Input data is received as key codes and written
- * directly via input_translate_key.
+ * directly via input_key.
*
* Each window also has a "virtual" screen (screen.c) which contains the
* current state and is redisplayed when the window is reattached to a client.