diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-09 21:42:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-09 21:42:14 +0000 |
commit | fa6a7c7a7aa6aecf8c5e2519410e66a67bcd66a9 (patch) | |
tree | 90d8f411e68a0b5565fcab0c5c738dbfd84d5aac /usr.bin/tmux/tmux.h | |
parent | 885c6018c00fd5b42fdd543304d2bb827527b33e (diff) |
Remove some bits leftover from unused backoff code.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 571a9fce4e2..b57d86dfe82 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.319 2012/03/09 09:57:40 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.320 2012/03/09 21:42:13 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -59,9 +59,6 @@ extern char **environ; /* Automatic name refresh interval, in milliseconds. */ #define NAME_INTERVAL 500 -/* Maximum data to buffer for output before suspending writing to a tty. */ -#define BACKOFF_THRESHOLD 16384 - /* * Maximum sizes of strings in message data. Don't forget to bump * PROTOCOL_VERSION if any of these change! @@ -1048,7 +1045,6 @@ struct tty { #define TTY_UTF8 0x8 #define TTY_STARTED 0x10 #define TTY_OPENED 0x20 -#define TTY_BACKOFF 0x40 int flags; int term_flags; |