Fix for url-https.el neing merged into url-http.el
* lisp/url/url-methods.el (url-scheme-get-property): url-https.el was merged into url-http.el, so load the latter for https. Fixes: debbugs:12599
This commit is contained in:
parent
63820c5c02
commit
97fbed8759
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-10-08 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* url-methods.el (url-scheme-get-property): url-https.el was
|
||||
merged into url-http.el, so load the latter for https. (Bug#12599)
|
||||
|
||||
2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* url-http.el (url-http-user-agent-string): Leak less info.
|
||||
|
|
|
@ -118,7 +118,9 @@ it has not already been loaded."
|
|||
(let* ((stub (concat "url-" scheme))
|
||||
(loader (intern stub)))
|
||||
(condition-case ()
|
||||
(require loader)
|
||||
;; url-https.el was merged into url-http because of 8+3
|
||||
;; filename limitations, so we have to do this dance.
|
||||
(require (if (equal "https" scheme) 'url-http loader))
|
||||
(error nil))
|
||||
(if (fboundp loader)
|
||||
(progn
|
||||
|
|
Loading…
Add table
Reference in a new issue