Skip to content

Commit 1bd64b5

Browse files
committed
fill docstring for newly defined function and variable.
1 parent 6ddf0a7 commit 1bd64b5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

quicklisp/http.lisp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,9 @@ the indexes in the header accordingly."
790790
(too-many-redirects-count condition)
791791
(too-many-redirects-url condition)))))
792792

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.")
794796

795797
(defun fetch (url file &rest rest)
796798
"Request URL and write the body of the response to FILE."
@@ -803,6 +805,7 @@ the indexes in the header accordingly."
803805
(defun http-fetch (url file &key (follow-redirects t) quietly
804806
(if-exists :rename-and-delete)
805807
(maximum-redirects *maximum-redirects*))
808+
"default scheme-function for http protocol."
806809
(setf url (merge-urls url *default-url-defaults*))
807810
(setf file (merge-pathnames file))
808811
(let ((redirect-count 0)

0 commit comments

Comments
 (0)