1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

In html_table, rename parameter a to attr.

This commit is contained in:
Miciah Dashiel Butler Masters 2005-11-26 02:15:00 +00:00 committed by Miciah Dashiel Butler Masters
parent cf2fcaa84f
commit 947ddc4160

View File

@ -589,12 +589,12 @@ html_hr(struct html_context *html_context, unsigned char *a,
}
void
html_table(struct html_context *html_context, unsigned char *a,
html_table(struct html_context *html_context, unsigned char *attr,
unsigned char *html, unsigned char *eof, unsigned char **end)
{
par_format.leftmargin = par_format.rightmargin = html_context->margin;
par_format.align = ALIGN_LEFT;
html_linebrk(html_context, a, html, eof, end);
html_linebrk(html_context, attr, html, eof, end);
format.style.attr = 0;
}