summaryrefslogtreecommitdiff
path: root/desktop/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/options.c')
-rw-r--r--desktop/options.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/options.c b/desktop/options.c
index aa0876f8e..3875a1d73 100644
--- a/desktop/options.c
+++ b/desktop/options.c
@@ -67,6 +67,8 @@ char *option_font_cursive;
char *option_font_fantasy;
/** Accept-Language header. */
char *option_accept_language = 0;
+/** Accept-Charset header. */
+char *option_accept_charset = 0;
/** Preferred maximum size of memory cache / bytes. */
int option_memory_cache_size = 2 * 1024 * 1024;
/** Preferred expiry age of disc cache / days. */
@@ -149,6 +151,7 @@ struct {
{ "font_cursive", OPTION_STRING, &option_font_cursive },
{ "font_fantasy", OPTION_STRING, &option_font_fantasy },
{ "accept_language", OPTION_STRING, &option_accept_language },
+ { "accept_charset", OPTION_STRING, &option_accept_charset },
{ "memory_cache_size", OPTION_INTEGER, &option_memory_cache_size },
{ "disc_cache_age", OPTION_INTEGER, &option_disc_cache_age },
{ "block_advertisements", OPTION_BOOL, &option_block_ads },