mirror of
https://github.com/tmux/tmux.git
synced 2025-03-29 02:08:48 +00:00
Remove unused variables from Ben Boeckel, and a Pp from jmc.
This commit is contained in:
parent
fb29242168
commit
dc882adb2e
@ -1706,7 +1706,6 @@ static void
|
|||||||
server_client_dispatch(struct imsg *imsg, void *arg)
|
server_client_dispatch(struct imsg *imsg, void *arg)
|
||||||
{
|
{
|
||||||
struct client *c = arg;
|
struct client *c = arg;
|
||||||
const char *data;
|
|
||||||
ssize_t datalen;
|
ssize_t datalen;
|
||||||
struct session *s;
|
struct session *s;
|
||||||
|
|
||||||
@ -1718,7 +1717,6 @@ server_client_dispatch(struct imsg *imsg, void *arg)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
data = imsg->data;
|
|
||||||
datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
|
datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
|
||||||
|
|
||||||
switch (imsg->hdr.type) {
|
switch (imsg->hdr.type) {
|
||||||
|
1
tmux.1
1
tmux.1
@ -2718,7 +2718,6 @@ also lists only keys in
|
|||||||
specifies a prefix to print before each key and
|
specifies a prefix to print before each key and
|
||||||
.Fl 1
|
.Fl 1
|
||||||
lists only the first matching key.
|
lists only the first matching key.
|
||||||
.Pp
|
|
||||||
.It Xo Ic send-keys
|
.It Xo Ic send-keys
|
||||||
.Op Fl FHlMRX
|
.Op Fl FHlMRX
|
||||||
.Op Fl N Ar repeat-count
|
.Op Fl N Ar repeat-count
|
||||||
|
@ -210,7 +210,7 @@ window_buffer_draw(__unused void *modedata, void *itemdata,
|
|||||||
struct paste_buffer *pb;
|
struct paste_buffer *pb;
|
||||||
const char *pdata, *start, *end;
|
const char *pdata, *start, *end;
|
||||||
char *buf = NULL;
|
char *buf = NULL;
|
||||||
size_t psize, len;
|
size_t psize;
|
||||||
u_int i, cx = ctx->s->cx, cy = ctx->s->cy;
|
u_int i, cx = ctx->s->cx, cy = ctx->s->cy;
|
||||||
|
|
||||||
pb = paste_get_name(item->name);
|
pb = paste_get_name(item->name);
|
||||||
@ -223,7 +223,7 @@ window_buffer_draw(__unused void *modedata, void *itemdata,
|
|||||||
while (end != pdata + psize && *end != '\n')
|
while (end != pdata + psize && *end != '\n')
|
||||||
end++;
|
end++;
|
||||||
buf = xreallocarray(buf, 4, end - start + 1);
|
buf = xreallocarray(buf, 4, end - start + 1);
|
||||||
len = utf8_strvis(buf, start, end - start, VIS_OCTAL|VIS_TAB);
|
utf8_strvis(buf, start, end - start, VIS_OCTAL|VIS_TAB);
|
||||||
if (*buf != '\0') {
|
if (*buf != '\0') {
|
||||||
screen_write_cursormove(ctx, cx, cy + i, 0);
|
screen_write_cursormove(ctx, cx, cy + i, 0);
|
||||||
screen_write_nputs(ctx, sx, &grid_default_cell, "%s",
|
screen_write_nputs(ctx, sx, &grid_default_cell, "%s",
|
||||||
|
Loading…
Reference in New Issue
Block a user