summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-08-24 14:31:17 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-08-24 14:31:17 +0000
commit26d874b2187e2be573db663640fcdea3ec8b20cf (patch)
tree0e4fbdea84227f91b8b1f3bd24475667595f1bdf /lisp
parent2344ffc141ccf44a4090916ec06815d273f83f39 (diff)
downloademacs-26d874b2187e2be573db663640fcdea3ec8b20cf.tar.gz
emacs-26d874b2187e2be573db663640fcdea3ec8b20cf.tar.bz2
emacs-26d874b2187e2be573db663640fcdea3ec8b20cf.zip
(nntp-open-tls-stream, nntp-open-ssl-stream): Defvar at compile time.
Diffstat (limited to 'lisp')
-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 2609ff4ee13..e1d8406ae70 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-24 Juanma Barranquero <lekktu@gmail.com>
+
+ * 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 <rms@gnu.org>
* 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 593f33bb3f7..93a9dd5e504 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."