Add missing fhandler.h patch and ChangeLog comment.
This commit is contained in:
parent
2aeef06579
commit
b791ec4a2c
|
@ -34,11 +34,12 @@
|
|||
|
||||
2010-03-30 Thomas Wolff <towo@towo.net>
|
||||
|
||||
* fhandler.h (class dev_console): Drop vt100_graphics_mode_active.
|
||||
Add flags vt100_graphics_mode_G0, vt100_graphics_mode_G1 and
|
||||
iso_2022_G1.
|
||||
* fhandler.h (class dev_console): Drop vt100_graphics_mode_active. Add
|
||||
flags vt100_graphics_mode_G0, vt100_graphics_mode_G1 and iso_2022_G1.
|
||||
* fhandler_console.cc: Throughout, tune VT100 graphics mode switching
|
||||
to follow ISO 2022 strictly.
|
||||
(fhandler_console::write) Reset VT100 graphic mode flags on terminal
|
||||
full reset (ESC c).
|
||||
|
||||
2010-03-30 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
|
|
|
@ -911,7 +911,9 @@ class dev_console
|
|||
unsigned rarg;
|
||||
bool saw_question_mark;
|
||||
bool saw_greater_than_sign;
|
||||
bool vt100_graphics_mode_active;
|
||||
bool vt100_graphics_mode_G0;
|
||||
bool vt100_graphics_mode_G1;
|
||||
bool iso_2022_G1;
|
||||
bool alternate_charset_active;
|
||||
bool metabit;
|
||||
|
||||
|
|
Loading…
Reference in New Issue