From b388b4afeaa95212d04c4ad65c1dcd882357ffc6 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Thu, 20 Jul 2006 02:03:25 +0200 Subject: [PATCH] Avoided rerendering --- src/document/options.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/document/options.h b/src/document/options.h index d2a33bfe6..54a821ef3 100644 --- a/src/document/options.h +++ b/src/document/options.h @@ -71,9 +71,6 @@ struct document_options { unsigned int plain: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() */ unsigned char *framename; @@ -104,6 +101,9 @@ struct document_options { unsigned int no_cache:1; unsigned int gradual_rerendering:1; +#ifdef CONFIG_UTF_8 + unsigned int utf8:1; +#endif /* CONFIG_UTF_8 */ /* Active link coloring */ /* This is mostly here to make use of this option cache so link * drawing is faster. --jonas */