Sync OpenBSD patchset 162:

More tty code tidying: move the saved cursor/region position (from before the
screen was updated) out of struct screen and into struct tty_ctx.
This commit is contained in:
Tiago Cunha
2009-07-23 12:48:18 +00:00
parent 9c6fa90857
commit b72f9bea43
4 changed files with 130 additions and 136 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: tty-write.c,v 1.21 2009-07-23 12:38:01 tcunha Exp $ */
/* $Id: tty-write.c,v 1.22 2009-07-23 12:48:18 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -18,42 +18,8 @@
#include <sys/types.h>
#include <string.h>
#include "tmux.h"
void
tty_write0(struct window_pane *wp, tty_cmd_func *cmdfn)
{
struct tty_ctx ctx;
memset(&ctx, 0, sizeof ctx);
ctx.wp = wp;
tty_write(cmdfn, &ctx);
}
void
tty_writenum(struct window_pane *wp, tty_cmd_func *cmdfn, u_int num)
{
struct tty_ctx ctx;
memset(&ctx, 0, sizeof ctx);
ctx.wp = wp;
ctx.num = num;
tty_write(cmdfn, &ctx);
}
void
tty_writeptr(struct window_pane *wp, tty_cmd_func *cmdfn, void *ptr)
{
struct tty_ctx ctx;
memset(&ctx, 0, sizeof ctx);
ctx.wp = wp;
ctx.ptr = ptr;
tty_write(cmdfn, &ctx);
}
void
tty_write(tty_cmd_func *cmdfn, struct tty_ctx *ctx)
{