diff options
author | 2020-11-09 08:42:43 +0000 | |
---|---|---|
committer | 2020-11-09 08:42:43 +0000 | |
commit | 5369955dee4fd75329d13ecfe91da706b468743e (patch) | |
tree | d012c81abc7587f7778d87bd863c0207192061b2 | |
parent | use 64 bit atomic builtins on i386 for atomic64 (diff) | |
download | wireguard-openbsd-5369955dee4fd75329d13ecfe91da706b468743e.tar.xz wireguard-openbsd-5369955dee4fd75329d13ecfe91da706b468743e.zip |
Remove some old debug logging.
-rw-r--r-- | usr.bin/tmux/screen-write.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/screen-write.c b/usr.bin/tmux/screen-write.c index 4fc124f127e..755d49ae224 100644 --- a/usr.bin/tmux/screen-write.c +++ b/usr.bin/tmux/screen-write.c @@ -1,4 +1,4 @@ -/* $OpenBSD: screen-write.c,v 1.187 2020/07/21 05:24:33 nicm Exp $ */ +/* $OpenBSD: screen-write.c,v 1.188 2020/11/09 08:42:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1551,7 +1551,6 @@ screen_write_collect_flush(struct screen_write_ctx *ctx, int scroll_only, TAILQ_FOREACH_SAFE(ci, &cl->items, entry, tmp) { screen_write_set_cursor(ctx, ci->x, y); if (ci->type == CLEAR_END) { - log_debug("XXX %u %u", ci->x, ci->bg); screen_write_initctx(ctx, &ttyctx, 1); ttyctx.bg = ci->bg; tty_write(tty_cmd_clearendofline, &ttyctx); |