bug#74841: [PATCH] srfi-19: Fix ~V converter in date->string.

2025-01-24 Thread Tomas Volf
Ludovic Courtès writes: > Hi, > > Tomas Volf <~@wolfsden.cz> skribis: > >> The ~V is supposed to print ISO week number, not a week number. This >> commit fixes that. >> >> * module/srfi/srfi-19.scm (date-week-number-iso): New procedure taken >> from the reference implementation. >> (directives)<

bug#74841: [PATCH] srfi-19: Fix ~V converter in date->string.

2024-12-22 Thread Ludovic Courtès
Hi, Tomas Volf <~@wolfsden.cz> skribis: > The ~V is supposed to print ISO week number, not a week number. This > commit fixes that. > > * module/srfi/srfi-19.scm (date-week-number-iso): New procedure taken > from the reference implementation. > (directives)<#\V>: Use it. > * test-suite/tests/srf

bug#74841: [PATCH] srfi-19: Fix ~V converter in date->string.

2024-12-12 Thread Tomas Volf
The ~V is supposed to print ISO week number, not a week number. This commit fixes that. * module/srfi/srfi-19.scm (date-week-number-iso): New procedure taken from the reference implementation. (directives)<#\V>: Use it. * test-suite/tests/srfi-19.test ("date->string ~V"): Add tests taken from the