Index: netsurf/desktop/options.h
===================================================================
--- netsurf/desktop/options.h	(revision 12242)
+++ netsurf/desktop/options.h	(working copy)
@@ -49,6 +49,7 @@
 extern int option_http_proxy_auth;
 extern char *option_http_proxy_auth_user;
 extern char *option_http_proxy_auth_pass;
+extern bool option_gopher_inline_images;
 extern int option_font_size;
 extern int option_font_min_size;
 extern char *option_accept_language;
Index: netsurf/desktop/options.c
===================================================================
--- netsurf/desktop/options.c	(revision 12242)
+++ netsurf/desktop/options.c	(working copy)
@@ -69,6 +69,8 @@
 char *option_http_proxy_auth_user = 0;
 /** Proxy authentication password */
 char *option_http_proxy_auth_pass = 0;
+/** Inline image items in Gopher pages. Dangerous. */
+bool option_gopher_inline_images = false;
 /** Default font size / 0.1pt. */
 int option_font_size = 128;
 /** Minimum font size. */
@@ -248,6 +250,7 @@
 	{ "http_proxy_auth",	OPTION_INTEGER,	&option_http_proxy_auth },
 	{ "http_proxy_auth_user", OPTION_STRING, &option_http_proxy_auth_user },
 	{ "http_proxy_auth_pass", OPTION_STRING, &option_http_proxy_auth_pass },
+	{ "gopher_inline_images", OPTION_BOOL,	&option_gopher_inline_images },
 	{ "font_size",		OPTION_INTEGER,	&option_font_size },
 	{ "font_min_size",	OPTION_INTEGER,	&option_font_min_size },
 	{ "font_sans",		OPTION_STRING,	&option_font_sans },
