Differences From Artifact [2de7bc9f1b]:
- File generic/tclDate.c — part of check-in [f339295ed5] at 2018-10-27 19:33:40 on branch core-8-5-branch — Backport various minor issues from 8.6: - gcc compiler warning in tclDate.c - protect Tcl_UtfToUniCharDString() from ever reading more than "length" bytes from its input, not even in the case of invalid UTF-8. - update to latest tzdata - fix 2 failing test-cases on MacOSX (user: jan.nijtmans size: 77794) [more...]
To Artifact [f1a57e3eb2]:
- File generic/tclDate.c — part of check-in [da9a473a26] at 2020-04-09 17:30:06 on branch core-8-5-branch — Guarantee TclNeedSpace and TclFindElement have common definition of whitespace by having both call the same routine. Create a macro form to contain performance costs and adapt callers. (user: dgp size: 77795) [more...]
| ︙ | |||
2680 2681 2682 2683 2684 2685 2686 | 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 | - + |
register char c;
register char *p;
char buff[20];
int Count;
location->first_column = yyInput - info->dateStart;
for ( ; ; ) {
|
| ︙ |