diff options
author | Andy Wingo <wingo@pobox.com> | 2012-01-07 01:26:00 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-01-07 01:26:00 +0100 |
commit | eaaf94c4ec6d6768eaa11029c9fd3029e1bd5a0c (patch) | |
tree | 9b6871801665c2d4747f875e249eb3b3ebf21831 /module/web/http.scm | |
parent | 992a387958946a8726583567ff630760e50bf7b3 (diff) | |
download | guile-eaaf94c4ec6d6768eaa11029c9fd3029e1bd5a0c.tar.gz |
remove duplicate write-uri definition
* module/web/http.scm: Remove duplicate write-uri definition.
Diffstat (limited to 'module/web/http.scm')
-rw-r--r-- | module/web/http.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/module/web/http.scm b/module/web/http.scm index afe70a7fd..1d52b9d42 100644 --- a/module/web/http.scm +++ b/module/web/http.scm @@ -805,9 +805,6 @@ ordered alist." (display-digits (date-second date) 2 port) (display " GMT" port))) -(define (write-uri uri port) - (display (uri->string uri) port)) - (define (parse-entity-tag val) (if (string-prefix? "W/" val) (cons (parse-qstring val 2) #f) |