From a1221f718bb1e9bcb6318dbf3314b9a35891caac Mon Sep 17 00:00:00 2001 From: llornkcor Date: Wed, 07 Apr 2004 07:48:07 +0000 Subject: respect TERM variable --- (limited to 'core/apps') diff --git a/core/apps/embeddedkonsole/MyPty.cpp b/core/apps/embeddedkonsole/MyPty.cpp index d05e31e..4b1ae59 100644 --- a/core/apps/embeddedkonsole/MyPty.cpp +++ b/core/apps/embeddedkonsole/MyPty.cpp @@ -168,7 +168,9 @@ int MyPty::run(const char* cmd, QStrList &, const char*, int) ttmode.c_cc[VINTR] = 3; ttmode.c_cc[VERASE] = 8; tcsetattr( STDIN_FILENO, TCSANOW, &ttmode ); - setenv("TERM","vt100",1); + + if(strlen(getenv("TERM"))<=0) + setenv("TERM","vt100",1); setenv("COLORTERM","0",1); if (getuid() == 0) { -- cgit v0.9.0.2