summaryrefslogtreecommitdiffstats
path: root/cmd-send-keys.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-20 17:31:48 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-20 17:31:48 +0000
commit4e4f71febb506fc83abb75ca163eca250ca4ac2a (patch)
tree0b8f32021f4f9df9cad773d456d1fd24e48bfb87 /cmd-send-keys.c
parent9798dcd4dfa481eb28096a637f5b555a12354ad8 (diff)
Swap in new paste buffer code and add a couple more commands.
Diffstat (limited to 'cmd-send-keys.c')
-rw-r--r--cmd-send-keys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-send-keys.c b/cmd-send-keys.c
index ea4d0e4e..3f6c2688 100644
--- a/cmd-send-keys.c
+++ b/cmd-send-keys.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-send-keys.c,v 1.12 2008-06-10 20:28:42 nicm Exp $ */
+/* $Id: cmd-send-keys.c,v 1.13 2008-06-20 17:31:48 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -121,7 +121,7 @@ cmd_send_keys_exec(struct cmd *self, struct cmd_ctx *ctx)
return;
for (i = 0; i < data->nkeys; i++)
- window_key(wl->window, data->keys[i]);
+ window_key(wl->window, ctx->curclient, data->keys[i]);
if (ctx->cmdclient != NULL)
server_write_client(ctx->cmdclient, MSG_EXIT, NULL, 0);