diff options
author | Andy Wingo <wingo@pobox.com> | 2012-03-12 16:58:15 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-03-12 16:58:15 +0100 |
commit | 89d45e850725e232ae685803ee476da5b046c2b0 (patch) | |
tree | 18ee785799289ad3cee136fbe1fde1c4222f1996 /module | |
parent | 02360ed6050833d5436ea4f1b9b4f10f3783491b (diff) | |
download | guile-89d45e850725e232ae685803ee476da5b046c2b0.tar.gz |
web http: fix Ma -> Mar
* module/web/http.scm (write-date): Fix serialization of Mar. Oops.
Diffstat (limited to 'module')
-rw-r--r-- | module/web/http.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/http.scm b/module/web/http.scm index c15bc3ed7..879923f81 100644 --- a/module/web/http.scm +++ b/module/web/http.scm @@ -1,6 +1,6 @@ ;;; HTTP messages -;; Copyright (C) 2010, 2011 Free Software Foundation, Inc. +;; Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc. ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public @@ -790,7 +790,7 @@ ordered alist." port) (display-digits (date-day date) 2 port) (display (case (date-month date) - ((1) " Jan ") ((2) " Feb ") ((3) " Ma ") + ((1) " Jan ") ((2) " Feb ") ((3) " Mar ") ((4) " Apr ") ((5) " May ") ((6) " Jun ") ((7) " Jul ") ((8) " Aug ") ((9) " Sep ") ((10) " Oct ") ((11) " Nov ") ((12) " Dec ") |