aboutsummaryrefslogtreecommitdiffstats
path: root/src/vt102.h
diff options
context:
space:
mode:
authorjames <>2008-02-28 16:58:49 +0000
committerjames <>2008-02-28 16:58:49 +0000
commit68f1170ace397c32f9c80a6b7cb89388d88743f2 (patch)
tree3dbafbe88e81f2ba7c8c877c91a1f31d04941864 /src/vt102.h
parent57dd88f415d70356e41f2bfd5c00c250bd085723 (diff)
downloadsympathy-68f1170ace397c32f9c80a6b7cb89388d88743f2.tar.gz
sympathy-68f1170ace397c32f9c80a6b7cb89388d88743f2.tar.bz2
sympathy-68f1170ace397c32f9c80a6b7cb89388d88743f2.zip
*** empty log message ***
Diffstat (limited to 'src/vt102.h')
-rw-r--r--src/vt102.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/vt102.h b/src/vt102.h
index e09fbf6..02fdf99 100644
--- a/src/vt102.h
+++ b/src/vt102.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.21 2008/02/28 16:57:52 james
+ * *** empty log message ***
+ *
* Revision 1.20 2008/02/27 09:42:22 james
* *** empty log message ***
*
@@ -79,7 +82,8 @@
#define VT102_CMD_LEN 128
-#define VT102_ROWS 24
+#define VT102_MAX_ROWS ((CRT_ROWS) - 1)
+#define VT102_ROWS_24 24
#define VT102_COLS_132 132
#define VT102_COLS_80 80
#define VT102_MAX_COLS VT102_COLS_132
@@ -92,7 +96,7 @@ typedef struct
{
int in_escape;
int in_cmd;
-
+
int cmd_ptr;
int cmd_more_bytes;
int cmd_termination;