diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/url/url-cookie.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index f6c75639d6f..546af477106 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2005-05-19 Juanma Barranquero <lekktu@gmail.com> + + * url-cookie.el (url-cookie-multiple-line): + Specify group and type in defcustom. + 2005-05-06 Juanma Barranquero <lekktu@gmail.com> * url-auth.el (url-register-auth-scheme): diff --git a/lisp/url/url-cookie.el b/lisp/url/url-cookie.el index ba13d3d7a8d..328e60b63bc 100644 --- a/lisp/url/url-cookie.el +++ b/lisp/url/url-cookie.el @@ -87,7 +87,9 @@ "*If nil, HTTP requests put all cookies for the server on one line. Some web servers, such as http://www.hotmail.com/, only accept cookies when they are on one line. This is broken behaviour, but just try -telling Microsoft that.") +telling Microsoft that." + :type 'boolean + :group 'url-cookie) (defvar url-cookies-changed-since-last-save nil "Whether the cookies list has changed since the last save operation.") |