Fix missing eat_newline_glitch (xn) in TeraTerm
This commit is contained in:
parent
27d8b515f1
commit
a1b7e34d7d
|
@ -3,6 +3,7 @@
|
||||||
* Add raiseWindow() to FMenuBar::leaveMenuBar()
|
* Add raiseWindow() to FMenuBar::leaveMenuBar()
|
||||||
* Fix allocation of null strings with the FString = operator
|
* Fix allocation of null strings with the FString = operator
|
||||||
* Fix for non printable characters in Cygwin and TeraTerm
|
* Fix for non printable characters in Cygwin and TeraTerm
|
||||||
|
* Fix missing eat_newline_glitch (xn) in TeraTerm
|
||||||
|
|
||||||
2015-12-19 Markus Gans <guru.mail@muenster.de>
|
2015-12-19 Markus Gans <guru.mail@muenster.de>
|
||||||
* Add delOwnTimer() for FObject
|
* Add delOwnTimer() for FObject
|
||||||
|
|
|
@ -1008,8 +1008,12 @@ void FTerm::init_termcaps()
|
||||||
// newline ignored after 80 cols
|
// newline ignored after 80 cols
|
||||||
eat_nl_glitch = tgetflag(const_cast<char*>("xn"));
|
eat_nl_glitch = tgetflag(const_cast<char*>("xn"));
|
||||||
|
|
||||||
|
if ( isTeraTerm() )
|
||||||
|
eat_nl_glitch = true;
|
||||||
|
|
||||||
// maximum number of colors on screen
|
// maximum number of colors on screen
|
||||||
max_color = tgetnum(const_cast<char*>("Co"));
|
max_color = tgetnum(const_cast<char*>("Co"));
|
||||||
|
|
||||||
if ( max_color < 8 )
|
if ( max_color < 8 )
|
||||||
monochron = true;
|
monochron = true;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue