From 0b9b873a5505de6fdfb8f02cfbaef5fc82831a5f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 5 Jun 2008 21:25:00 +0000 Subject: Big reorganisation of command-line syntax. --- cmd-scroll-mode.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'cmd-scroll-mode.c') diff --git a/cmd-scroll-mode.c b/cmd-scroll-mode.c index 16199310..2f22babd 100644 --- a/cmd-scroll-mode.c +++ b/cmd-scroll-mode.c @@ -1,4 +1,4 @@ -/* $Id: cmd-scroll-mode.c,v 1.11 2008-06-05 16:35:32 nicm Exp $ */ +/* $Id: cmd-scroll-mode.c,v 1.12 2008-06-05 21:25:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -28,23 +28,24 @@ void cmd_scroll_mode_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_scroll_mode_entry = { "scroll-mode", NULL, - CMD_WINDOWONLY_USAGE, + CMD_TARGET_WINDOW_USAGE, 0, - cmd_windowonly_parse, + cmd_target_init, + cmd_target_parse, cmd_scroll_mode_exec, - cmd_windowonly_send, - cmd_windowonly_recv, - cmd_windowonly_free, - NULL, - NULL + cmd_target_send, + cmd_target_recv, + cmd_target_free, + cmd_target_print }; void cmd_scroll_mode_exec(struct cmd *self, struct cmd_ctx *ctx) { - struct winlink *wl; + struct cmd_target_data *data = self->data; + struct winlink *wl; - if ((wl = cmd_windowonly_get(self, ctx, NULL)) == NULL) + if ((wl = cmd_find_window(ctx, data->target, NULL)) == NULL) return; window_set_mode(wl->window, &window_scroll_mode); -- cgit