X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/cce7d53002e8abc346b67ea4100507b0e7c4d68e..ccd5156c42771fc3262fa6b8103dc9d8429898d2:/lisp/url/url-proxy.el diff --git a/lisp/url/url-proxy.el b/lisp/url/url-proxy.el index 3290f7c514..32bbd8a426 100644 --- a/lisp/url/url-proxy.el +++ b/lisp/url/url-proxy.el @@ -1,6 +1,6 @@ ;;; url-proxy.el --- Proxy server support -;; Copyright (C) 1999, 2004-2011 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2004-2016 Free Software Foundation, Inc. ;; Keywords: comm, data, processes, hypermedia @@ -63,6 +63,8 @@ (url-warn 'url (format "Unknown proxy directive: %s" proxy) 'critical) nil)))) +(autoload 'url-http "url-http") + (defun url-proxy (url callback &optional cbargs) ;; Retrieve URL from a proxy. ;; Expects `url-using-proxy' to be bound to the specific proxy to use." @@ -73,7 +75,7 @@ (url-http url callback cbargs)) (t (error "Don't know how to use proxy `%s'" url-using-proxy)))) - + (provide 'url-proxy) ;;; url-proxy.el ends here