summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/riscos/options.h b/riscos/options.h
index 566d40161..db140b9dd 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -73,6 +73,7 @@ extern char *option_font_default_bold_italic;
extern bool option_font_ufont;
extern int option_screen_cache;
extern bool option_block_popups;
+extern bool option_url_suggestion;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -130,7 +131,8 @@ char *option_font_default_bold = 0; \
char *option_font_default_bold_italic = 0; \
bool option_font_ufont = false; \
int option_screen_cache = 0; \
-bool option_block_popups = 0;
+bool option_block_popups = false; \
+bool option_url_suggestion = true;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -187,7 +189,8 @@ bool option_block_popups = 0;
{ "font_default_bold", OPTION_STRING, &option_font_default_bold }, \
{ "font_default_bold_italic", OPTION_STRING, &option_font_default_bold_italic }, \
{ "font_ufont", OPTION_BOOL, &option_font_ufont }, \
-{ "screen_cache", OPTION_INTEGER, &option_screen_cache }, \
-{ "block_popups", OPTION_BOOL, &option_block_popups }
+{ "screen_cache", OPTION_INTEGER, &option_screen_cache }, \
+{ "block_popups", OPTION_BOOL, &option_block_popups }, \
+{ "url_suggestion", OPTION_BOOL, &option_url_suggestion }
#endif