changeset 110727:c6fdea2b097e

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.
author Lars Magne Ingebrigtsen <larsi@gnus.org>
date Sun, 03 Oct 2010 14:43:12 +0200
parents 3d5760c08447
children ab7396ada96a
files lisp/url/ChangeLog lisp/url/url-vars.el
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/url/ChangeLog	Sun Oct 03 14:36:19 2010 +0200
+++ b/lisp/url/ChangeLog	Sun Oct 03 14:43:12 2010 +0200
@@ -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
--- a/lisp/url/url-vars.el	Sun Oct 03 14:36:19 2010 +0200
+++ b/lisp/url/url-vars.el	Sun Oct 03 14:43:12 2010 +0200
@@ -234,7 +234,7 @@
 		(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.")