From 8a936d29581e7f2088476a3d1b0f9f2f8635796f Mon Sep 17 00:00:00 2001 From: sperber Date: Tue, 28 Jan 2003 13:11:10 +0000 Subject: [PATCH] In time2date, return #f instead of "" for the time zone, if we want the Scheme-side code to compute a numerical offset to UTC. --- scsh/time1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scsh/time1.c b/scsh/time1.c index 9b0c666..a4717b8 100644 --- a/scsh/time1.c +++ b/scsh/time1.c @@ -135,7 +135,7 @@ s48_value time2date(s48_value sch_t, s48_value sch_zone) int offset = s48_extract_fixnum(sch_zone); t += s48_extract_fixnum(sch_zone); d = *gmtime(&t); - sch_tz_name = s48_enter_string(""); + sch_tz_name = S48_FALSE; sch_tz_secs = s48_enter_fixnum (offset); } else {