Ian Abbott

Results 8 comments of Ian Abbott

I'm not not sure of the overall format of this file, but the center section seems to consist of a bunch of TZif files joined together. I extracted some of...

I have combined previous commits into a single commit and rebased onto the master branch. I had to use a slightly ugly workaround in the `repeat-expr` values for the `tz_data.transition_times`...

@generalmimon OK, I have removed the workaround that suppressed those harmless warnings. The only thing that is bugging me now is that I get this error when compiling for **nim**,...

Does your client have an offline mode (like Thunderbird)?

You could probably set aerc's `outgoing` setting for the account to point to a per-account wrapper script that enqueues the email in a per-account directory to be sent later by...

In both forks, `timespec_from_double` has Y2038 problems on platforms with 32-bit `long`. Maybe use `.tv_nsec = (s - (time_t)(s)) * NSEC_PER_SEC,` to fix it? I can raise that as a...

Here are some test cases. The handling of the fractional part after the decimal point is also incorrect. ``` {__LINE__, "0xabcdef", 11259370.000000DF, 11259375.000000DD, 11259375.000000DL}, {__LINE__, "0XABCDEF", 11259370.000000DF, 11259375.000000DD, 11259375.000000DL}, {__LINE__,...

@pmur That should be an easy fix then!