summaryrefslogtreecommitdiff
path: root/lisp/url
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <larsi@gnus.org>2010-10-03 14:43:12 +0200
committerLars Magne Ingebrigtsen <larsi@gnus.org>2010-10-03 14:43:12 +0200
commitb39e244605c1522874860442120697d04ab19051 (patch)
tree70bac2826f564268313800c927f357d4a9f1ebf2 /lisp/url
parent7f467e1413c2f812febfa99eb42eb60223d4b52b (diff)
downloademacs-b39e244605c1522874860442120697d04ab19051.tar.gz
url-vars.el (url-mime-charset-string): Changed the default to nil to
avoid sending 1171 bytes of not very useful data to the HTTP server every request.
Diffstat (limited to 'lisp/url')
-rw-r--r--lisp/url/ChangeLog6
-rw-r--r--lisp/url/url-vars.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 5402c46fc5f..fb6f1221a76 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,9 @@
+2010-10-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
+
+ * url-vars.el (url-mime-charset-string): Changed the default to
+ nil to avoid sending 1171 bytes of not very useful data to the
+ HTTP server every request.
+
2010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
* url-util.el (url-display-percentage): Don't message when the URL
diff --git a/lisp/url/url-vars.el b/lisp/url/url-vars.el
index 06d3c2dcccc..8aba3efdbb6 100644
--- a/lisp/url/url-vars.el
+++ b/lisp/url/url-vars.el
@@ -234,7 +234,7 @@ Generated according to current coding system priorities."
(mapconcat 'symbol-name ordered ";q=0.5, ")
";q=0.5"))))
-(defvar url-mime-charset-string (url-mime-charset-string)
+(defvar url-mime-charset-string nil
"*String to send in the Accept-charset: field in HTTP requests.
The MIME charset corresponding to the most preferred coding system is
given priority 1 and the rest are given priority 0.5.")