diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-12-10 00:01:11 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-12-10 00:01:11 +0000 |
commit | a64b7cfe5d20b6193d58903b0ee82aed412071a3 (patch) | |
tree | 8212e5cad350c58ee1ab3c4de9b849a94973f462 /screen-write.c | |
parent | 75135ded0922986a4aa616f449978b64c15f1da9 (diff) | |
parent | bee95bf378ab45d4671fd086a4dd24b7259cf772 (diff) | |
download | rtmux-a64b7cfe5d20b6193d58903b0ee82aed412071a3.tar.gz rtmux-a64b7cfe5d20b6193d58903b0ee82aed412071a3.tar.bz2 rtmux-a64b7cfe5d20b6193d58903b0ee82aed412071a3.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/screen-write.c b/screen-write.c index d5fc1dee..e8593cf1 100644 --- a/screen-write.c +++ b/screen-write.c @@ -516,7 +516,7 @@ screen_write_cursordown(struct screen_write_ctx *ctx, u_int ny) s->cy += ny; } -/* Cursor right by nx. */ +/* Cursor right by nx. */ void screen_write_cursorright(struct screen_write_ctx *ctx, u_int nx) { @@ -839,7 +839,7 @@ screen_write_clearstartofline(struct screen_write_ctx *ctx, u_int bg) tty_write(tty_cmd_clearstartofline, &ttyctx); } -/* Move cursor to px,py. */ +/* Move cursor to px,py. */ void screen_write_cursormove(struct screen_write_ctx *ctx, u_int px, u_int py) { @@ -854,7 +854,7 @@ screen_write_cursormove(struct screen_write_ctx *ctx, u_int px, u_int py) s->cy = py; } -/* Reverse index (up with scroll). */ +/* Reverse index (up with scroll). */ void screen_write_reverseindex(struct screen_write_ctx *ctx) { |