summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2020-04-16 14:25:36 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2020-04-16 14:25:36 +0000
commit7a8fb87750c3d4898150f991305a714d19eb935b (patch)
tree834f797d6f6eb9bd2c5743867603b86c7f1d7543 /usr.bin/tmux/tmux.h
parentb6eb527e30117125d69434a1fcfb9af98f15db75 (diff)
Move the UTF-8 flag to terminal flags.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 0f33725a197..66753c75794 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.997 2020/04/16 14:03:51 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.998 2020/04/16 14:25:35 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -1183,6 +1183,7 @@ struct tty_term {
#define TERM_DECFRA 0x8
#define TERM_RGBCOLOURS 0x10
#define TERM_SYNC 0x20
+#define TERM_UTF8 0x40
int flags;
LIST_ENTRY(tty_term) entry;
@@ -1235,7 +1236,7 @@ struct tty {
#define TTY_NOCURSOR 0x1
#define TTY_FREEZE 0x2
#define TTY_TIMER 0x4
-#define TTY_UTF8 0x8
+/* 0x8 unused */
#define TTY_STARTED 0x10
#define TTY_OPENED 0x20
#define TTY_FOCUS 0x40