From 26d874b2187e2be573db663640fcdea3ec8b20cf Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 24 Aug 2005 14:31:17 +0000 Subject: [PATCH] (nntp-open-tls-stream, nntp-open-ssl-stream): Defvar at compile time. --- lisp/url/ChangeLog | 5 +++++ lisp/url/url-news.el | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) 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 + + * 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 * 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." -- 2.39.2