diff options
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -76,26 +76,6 @@ typedef struct { | |||
76 | char state; | 76 | char state; |
77 | } TCursor; | 77 | } TCursor; |
78 | 78 | ||
79 | /* Internal representation of the screen */ | ||
80 | typedef struct { | ||
81 | int row; /* nb row */ | ||
82 | int col; /* nb col */ | ||
83 | Line *line; /* screen */ | ||
84 | Line *alt; /* alternate screen */ | ||
85 | int *dirty; /* dirtyness of lines */ | ||
86 | TCursor c; /* cursor */ | ||
87 | int ocx; /* old cursor col */ | ||
88 | int ocy; /* old cursor row */ | ||
89 | int top; /* top scroll limit */ | ||
90 | int bot; /* bottom scroll limit */ | ||
91 | int mode; /* terminal mode flags */ | ||
92 | int esc; /* escape state flags */ | ||
93 | char trantbl[4]; /* charset table translation */ | ||
94 | int charset; /* current charset */ | ||
95 | int icharset; /* selected charset for sequence */ | ||
96 | int *tabs; | ||
97 | } Term; | ||
98 | |||
99 | /* Purely graphic info */ | 79 | /* Purely graphic info */ |
100 | typedef struct { | 80 | typedef struct { |
101 | int tw, th; /* tty width and height */ | 81 | int tw, th; /* tty width and height */ |
@@ -168,7 +148,6 @@ void *xrealloc(void *, size_t); | |||
168 | char *xstrdup(char *); | 148 | char *xstrdup(char *); |
169 | 149 | ||
170 | /* Globals */ | 150 | /* Globals */ |
171 | extern Term term; | ||
172 | extern int cmdfd; | 151 | extern int cmdfd; |
173 | extern pid_t pid; | 152 | extern pid_t pid; |
174 | extern int oldbutton; | 153 | extern int oldbutton; |