diff options
| author | ckonstanski <carlos.konstanski@olo.com> | 2021-11-12 07:29:39 -0700 |
|---|---|---|
| committer | ckonstanski <carlos.konstanski@olo.com> | 2021-11-12 07:29:39 -0700 |
| commit | da33ec2cddf42aada1bc3b17f78182887ea6ea6c (patch) | |
| tree | 9e892d017ec865558824ce08f57b890441b118de | |
| parent | b53bc020f5b52a31228fe4414de2f28a94690edb (diff) | |
changed &rest to &body in macro definition
| -rw-r--r-- | src/http.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.lisp b/src/http.lisp index 2a4793a..5271030 100644 --- a/src/http.lisp +++ b/src/http.lisp @@ -3,7 +3,7 @@ (in-package :org-ckons-http) -(defmacro with-cookie-jar (&rest body) +(defmacro with-cookie-jar (&body body) `(let ((cookie-jar (make-instance 'drakma:cookie-jar))) ,@body)) |
