In time2date, return #f instead of "" for the time zone, if we want

the Scheme-side code to compute a numerical offset to UTC.
This commit is contained in:
sperber 2003-01-28 13:11:10 +00:00
parent 7559be876a
commit 8a936d2958
1 changed files with 1 additions and 1 deletions

View File

@ -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 {