degesch: show usage on /buffer move failure
This commit is contained in:
parent
b56245cf5b
commit
ce96be2d5e
|
@ -5976,6 +5976,7 @@ handle_command_buffer (struct app_context *ctx, struct handler_args *a)
|
||||||
|
|
||||||
// XXX: also build a prefix map?
|
// XXX: also build a prefix map?
|
||||||
// TODO: some subcommand to print N last lines from the buffer
|
// TODO: some subcommand to print N last lines from the buffer
|
||||||
|
bool result = true;
|
||||||
if (!strcasecmp_ascii (action, "list"))
|
if (!strcasecmp_ascii (action, "list"))
|
||||||
show_buffers_list (ctx);
|
show_buffers_list (ctx);
|
||||||
else if (!strcasecmp_ascii (action, "clear"))
|
else if (!strcasecmp_ascii (action, "clear"))
|
||||||
|
@ -5985,11 +5986,11 @@ handle_command_buffer (struct app_context *ctx, struct handler_args *a)
|
||||||
buffer_print_backlog (ctx, a->buffer);
|
buffer_print_backlog (ctx, a->buffer);
|
||||||
}
|
}
|
||||||
else if (!strcasecmp_ascii (action, "move"))
|
else if (!strcasecmp_ascii (action, "move"))
|
||||||
handle_buffer_move (ctx, a);
|
result = handle_buffer_move (ctx, a);
|
||||||
else if (!strcasecmp_ascii (action, "close"))
|
else if (!strcasecmp_ascii (action, "close"))
|
||||||
handle_buffer_close (ctx, a);
|
handle_buffer_close (ctx, a);
|
||||||
else
|
else
|
||||||
return false;
|
result = false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue