Rename DECODED-TIME->GMT to DECODED-TIME->UTC.
authorChris Hanson <org/chris-hanson/cph>
Tue, 9 Sep 2008 16:28:19 +0000 (16:28 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 9 Sep 2008 16:28:19 +0000 (16:28 +0000)
v7/src/runtime/datime.scm
v7/src/runtime/runtime.pkg

index 02609e51785d95b78dbb945de97004ed8bf253f0..5b2af20d0f5d50d6c4054e65b884dfd35788401a 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: datime.scm,v 14.51 2008/09/09 05:23:49 cph Exp $
+$Id: datime.scm,v 14.52 2008/09/09 16:28:10 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -184,7 +184,7 @@ USA.
 (define (decoded-time/daylight-savings-time? dt)
   (> (decoded-time/daylight-savings-time dt) 0))
 
-(define (decoded-time->gmt dt)
+(define (decoded-time->utc dt)
   (if (let ((zone (decoded-time/zone dt)))
        (or (not zone)
            (= zone 0)))
@@ -250,7 +250,7 @@ USA.
                           port)))))
 
 (define (write-decoded-time-as-http dt port)
-  (%write-decoded-time-1 (decoded-time->gmt dt) port)
+  (%write-decoded-time-1 (decoded-time->utc dt) port)
   (write-string " GMT" port))
 
 (define (%write-decoded-time-1 dt port)
index 8d399cb6cf3164627ea79169d2e8a53a3c46e713..28e472d527d97416c47f08ac8aea28414d511938 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: runtime.pkg,v 14.677 2008/09/09 06:36:20 cph Exp $
+$Id: runtime.pkg,v 14.678 2008/09/09 16:28:19 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -1268,7 +1268,7 @@ USA.
          day-of-week/long-string
          day-of-week/short-string
          decoded-time->ctime-string
-         decoded-time->gmt
+         decoded-time->utc
          decoded-time->iso8601-string
          decoded-time->rfc2822-string
          decoded-time->universal-time