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:
Nicholas Marriott
2009-07-22 20:53:38 +00:00
parent bb4bab4c26
commit ddad0be5f7
4 changed files with 126 additions and 132 deletions

View File

@@ -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)
{