Don't forget to set $TERM when we spawn the pty. Of course I haven't

noticed this until now because I've always been spawning it _from_
another xterm! :-)

[originally from svn r2039]
This commit is contained in:
Simon Tatham 2002-10-13 23:57:40 +00:00
Родитель e6d2d5260f
Коммит 598018644a
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -92,6 +92,11 @@ static char *pty_init(char *host, int port, char **realhost, int nodelay)
/* Close everything _else_, for tidiness. */
for (i = 3; i < 1024; i++)
close(i);
{
char term_env_var[10 + sizeof(cfg.termtype)];
sprintf(term_env_var, "TERM=%s", cfg.termtype);
putenv(term_env_var);
}
if (pty_argv)
execvp(pty_argv[0], pty_argv);
else