summaryrefslogtreecommitdiff
path: root/src/prefs.h
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2011-07-24 13:47:24 -0400
committerJorge Arellano Cid <jcid@dillo.org>2011-07-24 13:47:24 -0400
commit378a4098e362794b4feb3d75e40b6ada697c47e9 (patch)
treea0e7e1dd5ed6790227e0f98cf7e17021cb089277 /src/prefs.h
parent58d8a78e4c89ba7609cb16ba8b4462235137fd58 (diff)
Added multiple search engines (with several 'search_url' lines in dillorc)
This patch adds the PREFS_STRINGS type to the prefsparser, which allows having multiple different strings asociated with one dillorc option (stored in a list)
Diffstat (limited to 'src/prefs.h')
-rw-r--r--src/prefs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/prefs.h b/src/prefs.h
index 4debee89..19e3890a 100644
--- a/src/prefs.h
+++ b/src/prefs.h
@@ -85,7 +85,8 @@ struct _DilloPrefs {
bool_t enterpress_forces_submit;
bool_t middle_click_opens_new_tab;
bool_t right_click_closes_tab;
- char *search_url;
+ bool_t search_url_idx;
+ Dlist *search_urls;
char *save_dir;
bool_t show_msg;
bool_t show_extra_warnings;