Compare commits

...

3 Commits

Author SHA1 Message Date
Thomas Hintz ac00262e46 readme 10 years ago
Thomas Hintz 2081a41bd2 Merge pull request #3 from ThomasHintz/testing-github-2
Add deprecated message to with-bucket.
10 years ago
Thomas eb28ee2a96 Add deprecated message to with-bucket. 10 years ago

@ -0,0 +1,8 @@
chicken-scheme-amazon-s3
========================
Amazon S3 access from Chicken Scheme.
This project has been moved to
https://github.com/sethalves/chicken-scheme-amazon-s3.
Use it instead for submitting patches and pull requests instead.

@ -160,7 +160,8 @@
((with-bucket bucket (func p1 ...))
(func bucket p1 ...))
((with-bucket bucket exp body ...)
(begin (with-bucket bucket exp)
(begin (print "I am deprecated.")
(with-bucket bucket exp)
(with-bucket bucket body ...)))))
(define (list-buckets)

Loading…
Cancel
Save