aboutsummaryrefslogtreecommitdiff
path: root/screen-redraw.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-16 17:35:40 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-16 17:35:40 +0000
commit55d5b83408de27485e6b2ecc311d9ff8eaae822b (patch)
tree58f63de5001cca24ae29fc488ee2a5ef4a9ab67b /screen-redraw.c
parent1726bf0ffcda9f8911d0e6905c6dadd69d915525 (diff)
downloadrtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.tar.gz
rtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.tar.bz2
rtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.zip
Informational messages on window option changes.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r--screen-redraw.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/screen-redraw.c b/screen-redraw.c
index af1c319f..1c1c5474 100644
--- a/screen-redraw.c
+++ b/screen-redraw.c
@@ -1,4 +1,4 @@
-/* $Id: screen-redraw.c,v 1.7 2008-06-14 18:38:55 nicm Exp $ */
+/* $Id: screen-redraw.c,v 1.8 2008-06-16 17:35:40 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -138,8 +138,6 @@ screen_redraw_write_string(struct screen_redraw_ctx *ctx, const char *fmt, ...)
va_end(ap);
for (ptr = msg; *ptr != '\0'; ptr++) {
- if (ctx->s->cx > screen_last_x(s))
- break;
if (*ptr < 0x20)
continue;
ctx->write(ctx->data, TTY_CHARACTER, *ptr);