[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: timezone offsets
From: |
Kevin Ryde |
Subject: |
Re: timezone offsets |
Date: |
Sat, 24 Jun 2006 09:41:33 +1000 |
User-agent: |
Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) |
Aaron VanDevender <address@hidden> writes:
>
> - lt->tm_gmtoff = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 9));
> + lt->tm_gmtoff = - scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 9));
Thanks, I'll make that change.
> On second thought, I think this patch is better since in keeps the
> scheme and C representations of the tm structure consistent,
Alas, "seconds west" is in the manual so I don't think that can be
changed. The difference from the C struct is unfortunate though.
> and it also removes the offset calculation redundancy.
Sounds fair, I'll apply that bit.