diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-26 06:15:13 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-26 06:15:57 +0100 |
commit | fd4d3e87938206d8d05509162c3f3a3c274bb478 (patch) | |
tree | bdc4175f034da24b0348b4c94cf3d5a692c6bc98 | |
parent | b34af611a5c02b82ee796edcd4b6c5999cdbeb8a (diff) | |
download | rtmux-fd4d3e87938206d8d05509162c3f3a3c274bb478.tar.gz rtmux-fd4d3e87938206d8d05509162c3f3a3c274bb478.tar.bz2 rtmux-fd4d3e87938206d8d05509162c3f3a3c274bb478.zip |
Set IUTF8 again when it exists.
-rw-r--r-- | spawn.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -395,6 +395,9 @@ spawn_pane(struct spawn_context *sc, char **cause) now.c_cc[VERASE] = '\177'; else now.c_cc[VERASE] = key; +#ifdef IUTF8 + now.c_iflag |= IUTF8; +#endif if (tcsetattr(STDIN_FILENO, TCSANOW, &now) != 0) _exit(1); |