=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/screen-write.c,v retrieving revision 1.100 retrieving revision 1.101 diff -c -r1.100 -r1.101 *** src/usr.bin/tmux/screen-write.c 2016/10/18 08:39:18 1.100 --- src/usr.bin/tmux/screen-write.c 2016/12/09 21:39:27 1.101 *************** *** 1,4 **** ! /* $OpenBSD: screen-write.c,v 1.100 2016/10/18 08:39:18 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: screen-write.c,v 1.101 2016/12/09 21:39:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 516,522 **** s->cy += ny; } ! /* Cursor right by nx. */ void screen_write_cursorright(struct screen_write_ctx *ctx, u_int nx) { --- 516,522 ---- s->cy += ny; } ! /* Cursor right by nx. */ void screen_write_cursorright(struct screen_write_ctx *ctx, u_int nx) { *************** *** 839,845 **** tty_write(tty_cmd_clearstartofline, &ttyctx); } ! /* Move cursor to px,py. */ void screen_write_cursormove(struct screen_write_ctx *ctx, u_int px, u_int py) { --- 839,845 ---- tty_write(tty_cmd_clearstartofline, &ttyctx); } ! /* Move cursor to px,py. */ void screen_write_cursormove(struct screen_write_ctx *ctx, u_int px, u_int py) { *************** *** 854,860 **** s->cy = py; } ! /* Reverse index (up with scroll). */ void screen_write_reverseindex(struct screen_write_ctx *ctx) { --- 854,860 ---- s->cy = py; } ! /* Reverse index (up with scroll). */ void screen_write_reverseindex(struct screen_write_ctx *ctx) {