From: Chris Hanson Date: Tue, 26 Sep 2006 06:58:53 +0000 (+0000) Subject: Use "T" as ISO-8601 date/time separator, since it makes the result X-Git-Tag: 20090517-FFI~925 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=8d657f9c85d11295f7fc822a017a55edb59dede4;p=mit-scheme.git Use "T" as ISO-8601 date/time separator, since it makes the result useful in more contexts. --- diff --git a/v7/src/runtime/datime.scm b/v7/src/runtime/datime.scm index 083bb01d7..75e93e7bb 100644 --- a/v7/src/runtime/datime.scm +++ b/v7/src/runtime/datime.scm @@ -1,10 +1,10 @@ #| -*-Scheme-*- -$Id: datime.scm,v 14.40 2004/06/23 03:45:50 cph Exp $ +$Id: datime.scm,v 14.41 2006/09/26 06:58:53 cph Exp $ Copyright 1986,1987,1988,1989,1990,1993 Massachusetts Institute of Technology Copyright 1995,1996,1997,1999,2000,2003 Massachusetts Institute of Technology -Copyright 2004 Massachusetts Institute of Technology +Copyright 2004,2006 Massachusetts Institute of Technology This file is part of MIT/GNU Scheme. @@ -409,7 +409,7 @@ USA. (d2 (decoded-time/month dt)) "-" (d2 (decoded-time/day dt)) - " " + "T" (d2 (decoded-time/hour dt)) ":" (d2 (decoded-time/minute dt))