mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Move input parser structs into input.c (removing fairly useless
saved_cursor_[xy] formats as a side-effect).
This commit is contained in:
@ -57,15 +57,17 @@ char *
|
||||
cmd_capture_pane_pending(struct args *args, struct window_pane *wp,
|
||||
size_t *len)
|
||||
{
|
||||
char *buf, *line, tmp[5];
|
||||
size_t linelen;
|
||||
u_int i;
|
||||
struct evbuffer *pending;
|
||||
char *buf, *line, tmp[5];
|
||||
size_t linelen;
|
||||
u_int i;
|
||||
|
||||
if (wp->ictx.since_ground == NULL)
|
||||
pending = input_pending(wp);
|
||||
if (pending == NULL)
|
||||
return (xstrdup(""));
|
||||
|
||||
line = EVBUFFER_DATA(wp->ictx.since_ground);
|
||||
linelen = EVBUFFER_LENGTH(wp->ictx.since_ground);
|
||||
line = EVBUFFER_DATA(pending);
|
||||
linelen = EVBUFFER_LENGTH(pending);
|
||||
|
||||
buf = xstrdup("");
|
||||
if (args_has(args, 'C')) {
|
||||
|
Reference in New Issue
Block a user