mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
00723f1f5c
@ -207,9 +207,9 @@ window_buffer_draw(__unused void *modedata, void *itemdata,
|
||||
{
|
||||
struct window_buffer_itemdata *item = itemdata;
|
||||
struct paste_buffer *pb;
|
||||
char line[1024];
|
||||
const char *pdata, *end, *cp;
|
||||
size_t psize, at;
|
||||
const char *pdata, *start, *end;
|
||||
char *buf = NULL;
|
||||
size_t psize, len;
|
||||
u_int i, cx = ctx->s->cx, cy = ctx->s->cy;
|
||||
|
||||
pb = paste_get_name(item->name);
|
||||
@ -218,27 +218,22 @@ window_buffer_draw(__unused void *modedata, void *itemdata,
|
||||
|
||||
pdata = end = paste_buffer_data(pb, &psize);
|
||||
for (i = 0; i < sy; i++) {
|
||||
at = 0;
|
||||
while (end != pdata + psize && *end != '\n') {
|
||||
if ((sizeof line) - at > 5) {
|
||||
cp = vis(line + at, *end, VIS_OCTAL|VIS_TAB, 0);
|
||||
at = cp - line;
|
||||
}
|
||||
start = end;
|
||||
while (end != pdata + psize && *end != '\n')
|
||||
end++;
|
||||
}
|
||||
if (at > sx)
|
||||
at = sx;
|
||||
line[at] = '\0';
|
||||
|
||||
if (*line != '\0') {
|
||||
buf = xreallocarray(buf, 4, end - start + 1);
|
||||
len = utf8_strvis(buf, start, end - start, VIS_OCTAL|VIS_TAB);
|
||||
if (*buf != '\0') {
|
||||
screen_write_cursormove(ctx, cx, cy + i, 0);
|
||||
screen_write_puts(ctx, &grid_default_cell, "%s", line);
|
||||
screen_write_nputs(ctx, sx, &grid_default_cell, "%s",
|
||||
buf);
|
||||
}
|
||||
|
||||
if (end == pdata + psize)
|
||||
break;
|
||||
end++;
|
||||
}
|
||||
free(buf);
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user