diff options
author | jcid <devnull@localhost> | 2008-09-10 00:26:14 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-10 00:26:14 +0200 |
commit | 171cd08291a2b2f9c212548f8a19c33bcc9ff2e6 (patch) | |
tree | 0d24aeda22c27f51c2cebca02ebae6a6bf90a4c1 /src/html.cc | |
parent | 10cefdd24ef13e42eef90059b4adbe65b1ade588 (diff) |
- removed the unused "asap" parameter.
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/html.cc b/src/html.cc index 806e5950..3817dd20 100644 --- a/src/html.cc +++ b/src/html.cc @@ -1253,7 +1253,7 @@ static void Html_eventually_pop_dw(DilloHtml *html, bool hand_over_break) if (html->dw != S_TOP(html)->textblock) { if (hand_over_break) DW2TB(html->dw)->handOverBreak (S_TOP(html)->style); - DW2TB(html->dw)->flush (false); + DW2TB(html->dw)->flush (); html->dw = S_TOP(html)->textblock; } } @@ -2765,7 +2765,7 @@ static void Html_tag_close_li(DilloHtml *html, int TagIdx) { html->InFlags &= ~IN_LI; html->WordAfterLI = false; - ((ListItem *)html->dw)->flush (false); + ((ListItem *)html->dw)->flush (); a_Html_pop_tag(html, TagIdx); } @@ -3855,7 +3855,7 @@ static int Html_write_raw(DilloHtml *html, char *buf, int bufsize, int Eof) } }/*while*/ - textblock->flush (Eof ? true : false); + textblock->flush (); return token_start; } |