From 1675ddb4d1880b834a2bd0bbae5a9ffa17eb596d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 25 Jun 2009 06:15:04 +0000 Subject: Miscellaneous unused functions, including one which was basically a duplicate. Found by lint. --- server-fn.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'server-fn.c') diff --git a/server-fn.c b/server-fn.c index 69926d8e..a025bf0a 100644 --- a/server-fn.c +++ b/server-fn.c @@ -75,22 +75,6 @@ server_write_session( } } -void -server_write_window( - struct window *w, enum hdrtype type, const void *buf, size_t len) -{ - struct client *c; - u_int i; - - for (i = 0; i < ARRAY_LENGTH(&clients); i++) { - c = ARRAY_ITEM(&clients, i); - if (c == NULL || c->session == NULL) - continue; - if (c->session->curw->window == w) - server_write_client(c, type, buf, len); - } -} - void server_redraw_client(struct client *c) { -- cgit