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

Avoided rerendering

This commit is contained in:
Witold Filipczyk 2006-07-20 02:03:25 +02:00 committed by Witold Filipczyk
parent 70a46e12aa
commit b388b4afea

View File

@ -71,9 +71,6 @@ struct document_options {
unsigned int plain:1; unsigned int plain:1;
unsigned int wrap:1; unsigned int wrap:1;
#ifdef CONFIG_UTF_8
unsigned int utf8:1;
#endif /* CONFIG_UTF_8 */
/* XXX: Everything past this comment is specialy handled by compare_opt() */ /* XXX: Everything past this comment is specialy handled by compare_opt() */
unsigned char *framename; unsigned char *framename;
@ -104,6 +101,9 @@ struct document_options {
unsigned int no_cache:1; unsigned int no_cache:1;
unsigned int gradual_rerendering:1; unsigned int gradual_rerendering:1;
#ifdef CONFIG_UTF_8
unsigned int utf8:1;
#endif /* CONFIG_UTF_8 */
/* Active link coloring */ /* Active link coloring */
/* This is mostly here to make use of this option cache so link /* This is mostly here to make use of this option cache so link
* drawing is faster. --jonas */ * drawing is faster. --jonas */