diff options
author | james <> | 2008-02-06 15:53:22 +0000 |
---|---|---|
committer | james <> | 2008-02-06 15:53:22 +0000 |
commit | 9d9e22844f2423831c496b758c5278e9338ab56e (patch) | |
tree | c99375c6126a880dc7e850fca53dd34d156d441e /src/vt102.h | |
parent | e18a0076cdd7336517dd9853a79335de0fb5cc22 (diff) | |
download | sympathy-9d9e22844f2423831c496b758c5278e9338ab56e.tar.gz sympathy-9d9e22844f2423831c496b758c5278e9338ab56e.tar.bz2 sympathy-9d9e22844f2423831c496b758c5278e9338ab56e.zip |
*** empty log message ***
Diffstat (limited to 'src/vt102.h')
-rw-r--r-- | src/vt102.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/vt102.h b/src/vt102.h index 1007353..1a23dd5 100644 --- a/src/vt102.h +++ b/src/vt102.h @@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.5 2008/02/06 15:53:22 james + * *** empty log message *** + * * Revision 1.4 2008/02/06 11:30:37 james * *** empty log message *** * @@ -52,10 +55,18 @@ typedef struct VT102_parser parser; int attr; CRT crt; - CRT_Pos pos; + + int pending_wrap; + CRT_Pos pos,current_line; + + + uint8_t modes[VT102_NMODES]; uint8_t private_modes[VT102_NMODES]; + + uint8_t tabs[VT102_COLS]; + } VT102; #define VT102_PRIVATE_MODE_CURSOR_MODE 1 |