diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-08-27 10:08:44 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-08-27 10:08:44 +0000 |
commit | b9de906ad9677f30b1fa9af3219ebc803f3abb9f (patch) | |
tree | 113e879c5713d3718e9b101f999cbfd8459bdab6 /window.c | |
parent | 73d7b7047979d7b36711ab6621db7b0c97d3ea00 (diff) | |
download | rtmux-b9de906ad9677f30b1fa9af3219ebc803f3abb9f.tar.gz rtmux-b9de906ad9677f30b1fa9af3219ebc803f3abb9f.tar.bz2 rtmux-b9de906ad9677f30b1fa9af3219ebc803f3abb9f.zip |
We use screen now, not ansi.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.2 2007-07-25 23:13:18 nicm Exp $ */ +/* $Id: window.c,v 1.3 2007-08-27 10:08:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -35,9 +35,10 @@ * Each window is attached to a pty. This file contains code to handle them. * * A window has two buffers attached, these are filled and emptied by the main - * server poll loop. Output data is received from pty's in ANSI format, - * translated and returned as a series of ANSI escape sequences and strings. - * Input data is received in ANSI format and written directly to the pty. + * server poll loop. Output data is received from pty's in screen format, + * translated and returned as a series of escape sequences and strings. + * Input data is received in screen format and written directly to the pty + * (translation is done in the client). * * 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. @@ -302,7 +303,7 @@ window_input(struct window *w, struct buffer *b, size_t size) } /* - * Process window output. Output is translated into a series of ANSI escape + * Process window output. Output is translated into a series of escape * sequences and strings and returned. */ void |