From d5edaf988e7dd04488f3b7580802eb2eb131df48 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 21 Nov 2007 15:35:53 +0000 Subject: Horizontal history/scrolling. --- window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index 1b991651..40d8d2ea 100644 --- a/window.c +++ b/window.c @@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.28 2007-11-21 13:11:41 nicm Exp $ */ +/* $Id: window.c,v 1.29 2007-11-21 15:35:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -287,7 +287,7 @@ window_draw(struct window *w, struct buffer *b, u_int py, u_int ny) if (w->mode != NULL) w->mode->draw(w, b, py, ny); else - screen_draw(&w->screen, b, py, ny, 0); + screen_draw(&w->screen, b, py, ny, 0, 0); } void -- cgit