Set IUTF8 in termios where supported, suggested by Egmont Koblinger.

pull/1/head
Nicholas Marriott 2012-01-20 20:18:20 +00:00
parent 60069fe8fe
commit db7570daab
1 changed files with 4 additions and 0 deletions

View File

@ -681,6 +681,10 @@ window_pane_spawn(struct window_pane *wp, const char *cmd, const char *shell,
if (tio != NULL)
memcpy(tio2.c_cc, tio->c_cc, sizeof tio2.c_cc);
tio2.c_cc[VERASE] = '\177';
#ifdef IUTF8
if (options_get_number(&wp->window->options, "utf8"))
tio2.c_iflag |= IUTF8;
#endif
if (tcsetattr(STDIN_FILENO, TCSANOW, &tio2) != 0)
fatal("tcgetattr failed");