From: Chris Hanson Date: Mon, 15 May 2000 18:15:36 +0000 (+0000) Subject: Add ability to specify the time zone in which a ctime() string is to X-Git-Tag: 20090517-FFI~3875 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=1dcc98b4d2a5eaa13790bf9b70d02d889ac5fdd0;p=mit-scheme.git Add ability to specify the time zone in which a ctime() string is to be interpreted. --- diff --git a/v7/src/runtime/datime.scm b/v7/src/runtime/datime.scm index bd25dbbd4..cc3a083d6 100644 --- a/v7/src/runtime/datime.scm +++ b/v7/src/runtime/datime.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: datime.scm,v 14.27 2000/05/15 18:14:45 cph Exp $ +$Id: datime.scm,v 14.28 2000/05/15 18:15:36 cph Exp $ Copyright (c) 1988-2000 Massachusetts Institute of Technology @@ -349,7 +349,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (if (< n 100) (+ 1900 n) n)) - time-zone))))) + zone))))) (define (universal-time->local-ctime-string time) (decoded-time->ctime-string (universal-time->local-decoded-time time)))