summary refs log tree commit diff
path: root/term.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-08-18 15:11:01 -0400
committerJune McEnroe <june@causal.agency>2019-08-18 15:11:01 -0400
commit83364534ca9ab777d824392b6fc1f3befedca62f (patch)
tree54ef50e45940cfd80488dc7c3f031d992c2c406c /term.h
parentFix CSI param counting (diff)
downloadstream-master.tar.gz
stream-master.zip
Implement alternate charset HEAD master
Diffstat (limited to 'term.h')
-rw-r--r--term.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/term.h b/term.h
index f2df1fa..155d01b 100644
--- a/term.h
+++ b/term.h
@@ -14,7 +14,6 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <stdbool.h>
 #include <wchar.h>
 
 typedef unsigned uint;
@@ -69,6 +68,7 @@ struct Term {
 		uint top, bot;
 	} scroll;
 	uint y, x;
+	uint charset;
 	struct Style style;
 	struct Cell cells[];
 };