aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 15:51:54 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 15:51:54 +0000
commit93631b3ca755638c480321b2eaebaeea99075450 (patch)
tree92b77576206ed71dab9f0fcadea6850ba0d7330c /tmux.h
parent49477de55c8578ac7eac265c1557f47c6107940d (diff)
downloadrtmux-93631b3ca755638c480321b2eaebaeea99075450.tar.gz
rtmux-93631b3ca755638c480321b2eaebaeea99075450.tar.bz2
rtmux-93631b3ca755638c480321b2eaebaeea99075450.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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 52b6cb01..7842c5ae 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.4 2009/06/03 16:54:26 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.5 2009/06/03 23:30:40 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -348,6 +348,7 @@ struct tty_term_code_entry {
/* Output commands. */
enum tty_cmd {
+ TTY_ALIGNMENTTEST,
TTY_CELL,
TTY_CLEARENDOFLINE,
TTY_CLEARENDOFSCREEN,
@@ -1484,6 +1485,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);