From 642c0b00ab43079cd251ec9616963b8a806b3464 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 5 Jun 2008 16:35:32 +0000 Subject: Easy bits of arg printing for list-keys. --- cmd-paste-buffer.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'cmd-paste-buffer.c') diff --git a/cmd-paste-buffer.c b/cmd-paste-buffer.c index 96e0d4f0..a9cd7004 100644 --- a/cmd-paste-buffer.c +++ b/cmd-paste-buffer.c @@ -1,4 +1,4 @@ -/* $Id: cmd-paste-buffer.c,v 1.6 2008-06-03 05:35:51 nicm Exp $ */ +/* $Id: cmd-paste-buffer.c,v 1.7 2008-06-05 16:35:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -26,7 +26,7 @@ * Paste paste buffer if present. */ -void cmd_paste_buffer_exec(void *, struct cmd_ctx *); +void cmd_paste_buffer_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_paste_buffer_entry = { "paste-buffer", "paste", @@ -37,15 +37,16 @@ const struct cmd_entry cmd_paste_buffer_entry = { cmd_windowonly_send, cmd_windowonly_recv, cmd_windowonly_free, + NULL, NULL }; void -cmd_paste_buffer_exec(void *ptr, struct cmd_ctx *ctx) +cmd_paste_buffer_exec(struct cmd *self, struct cmd_ctx *ctx) { struct winlink *wl; - if ((wl = cmd_windowonly_get(ptr, ctx, NULL)) == NULL) + if ((wl = cmd_windowonly_get(self, ctx, NULL)) == NULL) return; if (paste_buffer != NULL && *paste_buffer != '\0') { -- cgit