Skip to content

Commit

Permalink
Fix for ASDF3 / cl-testgrid compatibility - removed ref to undeclared…
Browse files Browse the repository at this point in the history
… special variable
  • Loading branch information
Rob Blackwell committed Feb 25, 2013
1 parent 03555bb commit f0007aa
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tables.lisp
@@ -1,5 +1,5 @@
;;;; tables.lisp
;;;; Copyright (c) 2011 - 2012, Rob Blackwell. All rights reserved.
;;;; Copyright (c) 2011 - 2013, Rob Blackwell. All rights reserved.

(in-package #:cl-azure)

Expand All @@ -22,8 +22,7 @@
"Makes an HTTP request to the Table storage API."
(funcall handler
(web-request
(setf *foo*
(sign-table-storage-request
(sign-table-storage-request
(list :method method
:uri (format nil "~a~a" (table-storage-url account) resource)
:headers (acons "x-ms-date" (rfc1123-date-time-string)
Expand All @@ -32,7 +31,7 @@
(acons "MaxDataServiceVersion" "2.0;NetFx" ; Needed for 2009-09-19
headers))))
:body content
:account account))))))
:account account)))))

(defun list-tablename-elements-handler (response)
"Extracts a list of tables from an ADO.NET entity set Atom feed response body."
Expand Down Expand Up @@ -160,4 +159,4 @@

;; merge entity

;; delete entity
;; delete entity

0 comments on commit f0007aa

Please sign in to comment.