diff options
author | nicm <nicm> | 2020-04-16 14:25:35 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-16 14:25:35 +0000 |
commit | 5ec80bd249a37147207ec2ef420086336ccf78a8 (patch) | |
tree | 28707a55749d2d2c7cf7397c379c7376540cb8ea /server-client.c | |
parent | 4744aa43af47815a9c4c110cceb3959b1662e54b (diff) | |
download | rtmux-5ec80bd249a37147207ec2ef420086336ccf78a8.tar.gz rtmux-5ec80bd249a37147207ec2ef420086336ccf78a8.tar.bz2 rtmux-5ec80bd249a37147207ec2ef420086336ccf78a8.zip |
Move the UTF-8 flag to terminal flags.
Diffstat (limited to 'server-client.c')
-rw-r--r-- | server-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server-client.c b/server-client.c index 8042da9a..1b27ae20 100644 --- a/server-client.c +++ b/server-client.c @@ -2056,7 +2056,7 @@ server_client_dispatch_identify(struct client *c, struct imsg *imsg) c->fd = -1; } else { if (c->flags & CLIENT_UTF8) - c->tty.flags |= TTY_UTF8; + c->tty.term_flags |= TERM_UTF8; if (c->flags & CLIENT_256COLOURS) c->tty.term_flags |= TERM_256COLOURS; tty_resize(&c->tty); |