summaryrefslogtreecommitdiffstats
path: root/cmd-paste-buffer.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-05 16:35:32 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-05 16:35:32 +0000
commit642c0b00ab43079cd251ec9616963b8a806b3464 (patch)
tree40f2bcf2f39d93feb21481a8547f267166f627f0 /cmd-paste-buffer.c
parent7325fea37dd75ac89828c6cfdfbcbd8d54548241 (diff)
Easy bits of arg printing for list-keys.
Diffstat (limited to 'cmd-paste-buffer.c')
-rw-r--r--cmd-paste-buffer.c9
1 files changed, 5 insertions, 4 deletions
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 <nicm@users.sourceforge.net>
@@ -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') {