aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/url
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2005-08-24 14:31:17 +0000
committerJuanma Barranquero <[email protected]>2005-08-24 14:31:17 +0000
commit26d874b2187e2be573db663640fcdea3ec8b20cf (patch)
tree0e4fbdea84227f91b8b1f3bd24475667595f1bdf /lisp/url
parent2344ffc141ccf44a4090916ec06815d273f83f39 (diff)
(nntp-open-tls-stream, nntp-open-ssl-stream): Defvar at compile time.
Diffstat (limited to 'lisp/url')
-rw-r--r--lisp/url/ChangeLog5
-rw-r--r--lisp/url/url-news.el5
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 2609ff4ee1..e1d8406ae7 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-24 Juanma Barranquero <[email protected]>
+
+ * url-news.el (nntp-open-tls-stream, nntp-open-ssl-stream):
+ * url-http.el (url-http-cookies-sources): Defvar at compile time.
+
2005-07-15 Richard M. Stallman <[email protected]>
* url-http.el (url-http-parse-headers): Add :redirect arg-pair
diff --git a/lisp/url/url-news.el b/lisp/url/url-news.el
index 593f33bb3f..93a9dd5e50 100644
--- a/lisp/url/url-news.el
+++ b/lisp/url/url-news.el
@@ -30,7 +30,10 @@
(require 'nntp)
(autoload 'url-warn "url")
(autoload 'gnus-group-read-ephemeral-group "gnus-group")
-(eval-when-compile (require 'cl))
+(eval-when-compile
+ (require 'cl)
+ (defvar nntp-open-tls-stream)
+ (defvar nntp-open-ssl-stream))
(defgroup url-news nil
"News related options."