aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dillorc5
-rw-r--r--src/uicmd.cc3
2 files changed, 5 insertions, 3 deletions
diff --git a/dillorc b/dillorc
index e61b1c40..2876f643 100644
--- a/dillorc
+++ b/dillorc
@@ -98,8 +98,9 @@
#search_url="http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
# Set the proxy information for http.
-# WARNING: dillo uses wget for ftp and https. To use a proxy for those
-# protocols, you will need to configure wget.
+# WARNING: - HTTPS does not currently use the proxy settings.
+# - FTP and downloads plugins use wget. To use a proxy with them,
+# you will need to configure wget accordingly.
# http_proxy="http://localhost:8080/"
#(by default, no proxy is used)
diff --git a/src/uicmd.cc b/src/uicmd.cc
index 9534a7fb..4484f059 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -180,7 +180,8 @@ BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, const void *vbw)
win->add(DilloTabs);
// Create and set the UI
- UI *new_ui = new UI(0, 0, ww, wh, DEFAULT_TAB_LABEL, old_bw ? BW2UI(old_bw) : NULL);
+ UI *new_ui = new UI(0, 0, ww, wh, DEFAULT_TAB_LABEL,
+ old_bw ? BW2UI(old_bw) : NULL);
new_ui->set_status("http://www.dillo.org/");
new_ui->tabs(DilloTabs);