mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
web http: fix Ma -> Mar
* module/web/http.scm (write-date): Fix serialization of Mar. Oops.
This commit is contained in:
parent
02360ed605
commit
89d45e8507
1 changed files with 2 additions and 2 deletions
|
@ -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 ")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue