aboutsummaryrefslogtreecommitdiff
path: root/screen-redraw.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2014-02-26 21:59:33 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2014-02-26 21:59:33 +0000
commit582c2671ddce5a8cdd6d022c7c67fe683ce71bf1 (patch)
tree253a7d5d02eed1e0d994e4f4cc92a167e2b98d42 /screen-redraw.c
parent0bb9d51965f1920f303f8c9abd8133ce99d5818f (diff)
downloadrtmux-582c2671ddce5a8cdd6d022c7c67fe683ce71bf1.tar.gz
rtmux-582c2671ddce5a8cdd6d022c7c67fe683ce71bf1.tar.bz2
rtmux-582c2671ddce5a8cdd6d022c7c67fe683ce71bf1.zip
Having three *clock* files is ridiculous, remove clock.c.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r--screen-redraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c
index 6db1064b..6438034a 100644
--- a/screen-redraw.c
+++ b/screen-redraw.c
@@ -381,7 +381,7 @@ screen_redraw_draw_number(struct client *c, struct window_pane *wp)
for (j = 0; j < 5; j++) {
for (i = px; i < px + 5; i++) {
tty_cursor(tty, xoff + i, yoff + py + j);
- if (clock_table[idx][j][i - px])
+ if (window_clock_table[idx][j][i - px])
tty_putc(tty, ' ');
}
}