1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00

document: struct format_attr -> struct text_style_format

This commit is contained in:
Petr Baudis 2007-08-28 20:17:53 +02:00 committed by Petr Baudis
parent e133941206
commit 070d335796
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ struct css_property {
CSS_DISP_BLOCK,
} display;
struct {
enum format_attr add, rem;
enum text_style_format add, rem;
} font_attribute;
enum format_align text_align;
/* TODO:

View File

@ -21,7 +21,7 @@ struct uri;
* files - there's lack of any well defined interface and it's all randomly
* mixed up :/. */
enum format_attr {
enum text_style_format {
AT_BOLD = 1,
AT_ITALIC = 2,
AT_UNDERLINE = 4,
@ -31,7 +31,7 @@ enum format_attr {
};
struct text_style {
enum format_attr attr;
enum text_style_format attr;
color_T fg;
color_T bg;
};