1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

Merge branch 'master' into libd

This commit is contained in:
Witold Filipczyk 2023-04-10 15:59:45 +02:00
commit 9e32406e29

View File

@ -366,7 +366,10 @@ expand_lines(struct html_context *html_context, struct part *part,
} }
for (line = 0; line < lines; line++) { for (line = 0; line < lines; line++) {
realloc_line(html_context, part->document, Y(y + line), X(x)); if (realloc_line(html_context, part->document, Y(y + line),
X(x) + par_elformat.blockquote_level + par_elformat.orig_leftmargin) < 0) {
return;
}
if (par_elformat.blockquote_level) { if (par_elformat.blockquote_level) {
draw_blockquote_chars(part, y + line, html_context); draw_blockquote_chars(part, y + line, html_context);