(init_display) [WINDOWSNT]: Hardcode terminal_type.

This commit is contained in:
Jason Rumney 2007-11-21 03:46:31 +00:00
parent bdae054022
commit 6152361fcb

View file

@ -6893,8 +6893,12 @@ init_display ()
exit (1);
}
#ifdef WINDOWSNT
terminal_type = "w32console";
#else
/* Look at the TERM variable. */
terminal_type = (char *) getenv ("TERM");
#endif
if (!terminal_type)
{
#ifdef VMS