From 4e4f71febb506fc83abb75ca163eca250ca4ac2a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 20 Jun 2008 17:31:48 +0000 Subject: Swap in new paste buffer code and add a couple more commands. --- window-more.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'window-more.c') diff --git a/window-more.c b/window-more.c index d277883b..aac0341f 100644 --- a/window-more.c +++ b/window-more.c @@ -1,4 +1,4 @@ -/* $Id: window-more.c,v 1.12 2008-06-18 22:21:51 nicm Exp $ */ +/* $Id: window-more.c,v 1.13 2008-06-20 17:31:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -25,7 +25,7 @@ struct screen *window_more_init(struct window *); void window_more_free(struct window *); void window_more_resize(struct window *, u_int, u_int); -void window_more_key(struct window *, int); +void window_more_key(struct window *, struct client *, int); void window_more_redraw_screen(struct window *); void window_more_write_line( @@ -123,7 +123,7 @@ window_more_resize(struct window *w, u_int sx, u_int sy) } void -window_more_key(struct window *w, int key) +window_more_key(struct window *w, unused struct client *c, int key) { struct window_more_mode_data *data = w->modedata; struct screen *s = &data->screen; -- cgit