File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -790,7 +790,9 @@ the indexes in the header accordingly."
790
790
(too-many-redirects-count condition )
791
791
(too-many-redirects-url condition )))))
792
792
793
- (defvar *fetch-scheme-functions* ' ((" http" . http-fetch)))
793
+ (defvar *fetch-scheme-functions*
794
+ ' ((" http" . http-fetch))
795
+ " assoc list to decide which scheme-function are called by FETCH function." )
794
796
795
797
(defun fetch (url file &rest rest )
796
798
" Request URL and write the body of the response to FILE."
@@ -803,6 +805,7 @@ the indexes in the header accordingly."
803
805
(defun http-fetch (url file &key (follow-redirects t ) quietly
804
806
(if-exists :rename-and-delete )
805
807
(maximum-redirects *maximum-redirects* ))
808
+ " default scheme-function for http protocol."
806
809
(setf url (merge-urls url *default-url-defaults* ))
807
810
(setf file (merge-pathnames file))
808
811
(let ((redirect-count 0 )
You can’t perform that action at this time.
0 commit comments