diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-08-29 23:57:44 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-08-29 23:57:44 +0000 |
commit | f713724dc9049b3b7bb8bcc3d112747619c3fa13 (patch) | |
tree | ac6579c635ad3ffa7a4908d4bf48d34763d68dc4 /console/ChangeLog | |
parent | c19963fb7ad44ac4c5f908f3587e551c727c5be1 (diff) |
2002-08-30 Marcus Brinkmann <marcus@gnu.org>
* display.c (display_create): Likewise. Set
DISPLAY->attr.attr_def instead the color versions.
(struct attr): Remove fgcol_def, bgcol_def, and add attr_def.
(handle_esc_bracket_m): Set all attributes to their defaults for
case 0. Set default color using default attribute for case 49 and
case 39.
(display_output_one): Likewise.
* console.c (options): Add --attribute option.
(parse_opt): Parse --attribute option. Bail out with argp_error
on error.
(netfs_append_args): ...
(struct cons): Replace foreground and background with new
attribute member.
(vcons_lookup): Pass CONS->attribute to display_create instead
CONS->foreground and CONS->background.
(main): Set default colors and attributes.
(parse_attributes): New function.
Diffstat (limited to 'console/ChangeLog')
-rw-r--r-- | console/ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/console/ChangeLog b/console/ChangeLog index 69830796..b5726620 100644 --- a/console/ChangeLog +++ b/console/ChangeLog @@ -1,3 +1,23 @@ +2002-08-30 Marcus Brinkmann <marcus@gnu.org> + + * display.c (display_create): Likewise. Set + DISPLAY->attr.attr_def instead the color versions. + (struct attr): Remove fgcol_def, bgcol_def, and add attr_def. + (handle_esc_bracket_m): Set all attributes to their defaults for + case 0. Set default color using default attribute for case 49 and + case 39. + (display_output_one): Likewise. + * console.c (options): Add --attribute option. + (parse_opt): Parse --attribute option. Bail out with argp_error + on error. + (netfs_append_args): ... + (struct cons): Replace foreground and background with new + attribute member. + (vcons_lookup): Pass CONS->attribute to display_create instead + CONS->foreground and CONS->background. + (main): Set default colors and attributes. + (parse_attributes): New function. + 2002-08-28 Marcus Brinkmann <marcus@gnu.org> * display.c (screen_fill): Take CUR_LINES modulo LINES. |