=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.307 retrieving revision 1.308 diff -c -r1.307 -r1.308 *** src/usr.bin/tmux/tmux.h 2012/01/21 23:51:34 1.307 --- src/usr.bin/tmux/tmux.h 2012/01/29 09:37:02 1.308 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.307 2012/01/21 23:51:34 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.308 2012/01/29 09:37:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1078,1083 **** --- 1078,1086 ---- u_int orupper; u_int orlower; + u_int xoff; + u_int yoff; + /* Saved last cell on line. */ struct grid_cell last_cell; struct grid_utf8 last_utf8; *************** *** 1463,1470 **** int tty_open(struct tty *, const char *, char **); void tty_close(struct tty *); void tty_free(struct tty *); ! void tty_write(void (*)( ! struct tty *, const struct tty_ctx *), const struct tty_ctx *); void tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *); void tty_cmd_cell(struct tty *, const struct tty_ctx *); void tty_cmd_clearendofline(struct tty *, const struct tty_ctx *); --- 1466,1473 ---- int tty_open(struct tty *, const char *, char **); void tty_close(struct tty *); void tty_free(struct tty *); ! void tty_write( ! void (*)(struct tty *, const struct tty_ctx *), struct tty_ctx *); void tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *); void tty_cmd_cell(struct tty *, const struct tty_ctx *); void tty_cmd_clearendofline(struct tty *, const struct tty_ctx *); *************** *** 1722,1727 **** --- 1725,1731 ---- /* status.c */ int status_out_cmp(struct status_out *, struct status_out *); RB_PROTOTYPE(status_out_tree, status_out, entry, status_out_cmp); + int status_at_line(struct client *); void status_free_jobs(struct status_out_tree *); void status_update_jobs(struct client *); void status_set_window_at(struct client *, u_int);