diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-12-26 10:39:03 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-12-26 10:39:03 +0000 |
commit | 7d05ee7de7d9eead9f5a8fb4d3117ca68f98849a (patch) | |
tree | 15165d9d6b03d8ae26b33e5b5d5a47d159f8583c /usr.bin/tmux | |
parent | ba80bdb2022edf77973ec70ff851643098bd86a9 (diff) |
Nuke some stray debugging.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/tty.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 85f079ca588..b210787b217 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.79 2009/12/14 21:33:38 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.80 2009/12/26 10:39:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1231,7 +1231,6 @@ tty_colours(struct tty *tty, const struct grid_cell *gc, u_char *attr) if (fg == tc->fg && bg == tc->bg && ((flags ^ tc->flags) & (GRID_FLAG_FG256|GRID_FLAG_BG256)) == 0) return; - log_debug("fg was %hhu, now %hhu", tc->fg, fg); /* * Is either the default colour? This is handled specially because the |