When expanding macro tokens, we must expand "hour" either into "h" or "H", depending on the desired hour cycle.
This fixes #1197.
I have not changed the parsing of h, which currently accepts 24 hours just the same as H. This would be a breaking change and I am not sure it is worth introducing another special case in the parser for this.
When expanding macro tokens, we must expand "hour" either into "h" or "H", depending on the desired hour cycle. This fixes #1197.
I have not changed the parsing of
h
, which currently accepts 24 hours just the same asH
. This would be a breaking change and I am not sure it is worth introducing another special case in the parser for this.