diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-06-03 23:30:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-06-03 23:30:40 +0000 |
commit | 52ec9b9ec418dbb80e0ebaf8a418eab22e2dd21f (patch) | |
tree | 272d4423355ab2387775d1b794546dbde38f41ee /tmux.h | |
parent | ebe07c27260c295256e7c66480057a3fcfdc9e7f (diff) | |
download | rtmux-52ec9b9ec418dbb80e0ebaf8a418eab22e2dd21f.tar.gz rtmux-52ec9b9ec418dbb80e0ebaf8a418eab22e2dd21f.tar.bz2 rtmux-52ec9b9ec418dbb80e0ebaf8a418eab22e2dd21f.zip |
Implement the DEC alignment test. With the last change this is enough for the
first cursor test in vttest (in ports) to pass; it still shops a few more
problems though.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -279,6 +279,7 @@ struct tty_term_code_entry { /* Output commands. */ enum tty_cmd { + TTY_ALIGNMENTTEST, TTY_CELL, TTY_CLEARENDOFLINE, TTY_CLEARENDOFSCREEN, @@ -1363,6 +1364,7 @@ void screen_write_cursorup(struct screen_write_ctx *, u_int); void screen_write_cursordown(struct screen_write_ctx *, u_int); void screen_write_cursorright(struct screen_write_ctx *, u_int); void screen_write_cursorleft(struct screen_write_ctx *, u_int); +void screen_write_alignmenttest(struct screen_write_ctx *); void screen_write_insertcharacter(struct screen_write_ctx *, u_int); void screen_write_deletecharacter(struct screen_write_ctx *, u_int); void screen_write_insertline(struct screen_write_ctx *, u_int); |