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

[options] Moved was_xml_parsed below framename

Also call display_timer. For framesets
This commit is contained in:
Witold Filipczyk 2023-09-26 16:58:13 +02:00
parent 637bcb725c
commit 5e5d7f702a
2 changed files with 2 additions and 4 deletions

View File

@ -123,8 +123,6 @@ struct document_options {
unsigned int links_show_goto:1; unsigned int links_show_goto:1;
unsigned int was_xml_parsed:1;
/* XXX: Everything past this comment is specialy handled by compare_opt() */ /* XXX: Everything past this comment is specialy handled by compare_opt() */
char *framename; char *framename;
@ -156,6 +154,7 @@ struct document_options {
/** Internal flag for rerendering */ /** Internal flag for rerendering */
unsigned int no_cache:1; unsigned int no_cache:1;
unsigned int gradual_rerendering:1; unsigned int gradual_rerendering:1;
unsigned int was_xml_parsed:1;
#ifdef CONFIG_UTF8 #ifdef CONFIG_UTF8
unsigned int utf8:1; unsigned int utf8:1;

View File

@ -313,8 +313,7 @@ delayed_reload(void *data)
assert(rel); assert(rel);
reset_document(rel->document); reset_document(rel->document);
dump_xhtml(rel->cached, rel->document, rel->was_write); dump_xhtml(rel->cached, rel->document, rel->was_write);
sort_links(rel->document); display_timer(rel->ses);
draw_formatted(rel->ses, 0);
mem_free(rel); mem_free(rel);
} }