From db41dc3dac1528afbc369de91a28d1ebd4cf028b Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Mon, 7 Feb 2005 14:28:43 +0000 Subject: [project @ 2005-02-07 14:28:43 by rjw] Initial work for global history (currently incomplete) svn path=/import/netsurf/; revision=1497 --- riscos/options.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'riscos/options.h') 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 -- cgit v1.2.3