From 947ddc416065ff2f072047e83a819a338a962662 Mon Sep 17 00:00:00 2001 From: Miciah Dashiel Butler Masters Date: Sat, 26 Nov 2005 02:15:00 +0000 Subject: [PATCH] In html_table, rename parameter a to attr. --- src/document/html/parser/general.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/document/html/parser/general.c b/src/document/html/parser/general.c index 83be62ef5..a6089c1da 100644 --- a/src/document/html/parser/general.c +++ b/src/document/html/parser/general.c @@ -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; }