Fix Parameter passing in term::init_OptiAttr
This commit is contained in:
parent
85e5e04ab2
commit
76f978c511
|
@ -1,5 +1,6 @@
|
||||||
2017-07-15 Markus Gans <guru.mail@muenster.de>
|
2017-07-15 Markus Gans <guru.mail@muenster.de>
|
||||||
* Keyboarb functions are now in a separate class
|
* Keyboard functions are now in a separate class
|
||||||
|
* Fix Parameter passing in term::init_OptiAttr
|
||||||
|
|
||||||
2017-07-08 Markus Gans <guru.mail@muenster.de>
|
2017-07-08 Markus Gans <guru.mail@muenster.de>
|
||||||
* Extension of the unit test of FOptiMove
|
* Extension of the unit test of FOptiMove
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1438,7 +1438,7 @@ void FTerm::init_OptiAttr()
|
||||||
TCAP(fc::t_set_attributes),
|
TCAP(fc::t_set_attributes),
|
||||||
TCAP(fc::t_exit_attribute_mode),
|
TCAP(fc::t_exit_attribute_mode),
|
||||||
TCAP(fc::t_enter_alt_charset_mode),
|
TCAP(fc::t_enter_alt_charset_mode),
|
||||||
TCAP(fc::t_enter_alt_charset_mode),
|
TCAP(fc::t_exit_alt_charset_mode),
|
||||||
TCAP(fc::t_enter_pc_charset_mode),
|
TCAP(fc::t_enter_pc_charset_mode),
|
||||||
TCAP(fc::t_exit_pc_charset_mode),
|
TCAP(fc::t_exit_pc_charset_mode),
|
||||||
TCAP(fc::t_set_a_foreground),
|
TCAP(fc::t_set_a_foreground),
|
||||||
|
|
|
@ -201,7 +201,7 @@ void FTermcapQuirks::init_termcap_linux_quirks()
|
||||||
// Set select graphic rendition attributes
|
// Set select graphic rendition attributes
|
||||||
TCAP(fc::t_set_attributes) = \
|
TCAP(fc::t_set_attributes) = \
|
||||||
C_STR(CSI "0"
|
C_STR(CSI "0"
|
||||||
"%?%p6%|%t;1%;"
|
"%?%p6%t;1%;"
|
||||||
"%?%p1%p3%|%t;7%;"
|
"%?%p1%p3%|%t;7%;"
|
||||||
"%?%p4%t;5%;m"
|
"%?%p4%t;5%;m"
|
||||||
"%?%p9%t\016%e\017%;");
|
"%?%p9%t\016%e\017%;");
|
||||||
|
|
Loading…
Reference in New Issue