summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix SEGV in zipfs mounting, and try to make that code more comprehensibledkf2021-03-083-195/+511
|
* Added some tests for [zipfs lmkimg]dkf2021-03-073-8/+118
|
* Document that [zipfs mkimg] strips an existing ZIP. We ought to merge ↵dkf2021-03-062-45/+87
| | | | instead, but we don't yet.
* Merge 8.6jan.nijtmans2021-03-042-8/+18
|\
| * In man2html, use consistant color-names (6-char, uppercase), encoding ↵jan.nijtmans2021-03-042-15/+25
| | | | | | | | (utf-8) and translation (lf) independant from platform
* | Merge 8.6jan.nijtmans2021-03-047-2/+21
|\ \ | |/
| * Merge 8.5. Add unused stub table entriesjan.nijtmans2021-03-048-7/+47
| |\
| | * Add some more unused entries to the stub table, keeping up with the table ↵jan.nijtmans2021-03-046-6/+50
| | | | | | | | | | | | size increase of higher Tcl versions
| | * cleanup genStubs.tcl, e.g. "==" -> "eq" and "!=" -> "ne". No change in outputjan.nijtmans2021-03-041-11/+14
| | |
* | | Merge 8.6. Basically re-number testcases so they align with the 8.6 test-casesjan.nijtmans2021-03-031-20/+59
|\ \ \ | |/ /
| * | Merge 8.5. Just split some testcasesjan.nijtmans2021-03-031-5/+10
| |\ \ | | |/
| | * Backport improvements in UTF-8 handling for Tcl_UtfPrev/Tcl_UtfNext from 8.7 ↵jan.nijtmans2021-03-033-51/+99
| | | | | | | | | | | | (through 8.6). No change for TCL_UTF_MAX=3. Adapt test-cases accordingly
* | | Merge 8.6jan.nijtmans2021-03-021-1/+1
|\ \ \ | |/ /
| * | Using 0xFC00 is more readable here than ~0x3FF. It's sufficient becauwe ch1 ↵jan.nijtmans2021-03-021-3/+3
| | | | | | | | | | | | and ch2 are only 16-bit. Backported from 8.7
* | | Merge 8.6jan.nijtmans2021-03-021-0/+6
|\ \ \ | |/ /
| * | Backport some UTF-8-related changed from 8.7 to 8.6, only for TCL_UTF_MAX > ↵jan.nijtmans2021-03-022-17/+68
| | | | | | | | | | | | | | | 3. No change for TCL_UTF_MAX=3. Also adapt test-cases accordingly, and add comments why the changes were done.
* | | Ticket [87082587c4]: typo in msgcat man pageoehhar2021-02-271-1/+1
|\ \ \ | |/ /
| * | Ticket [87082587c4]: typo in msgcat man pageoehhar2021-02-271-1/+1
| | |
* | | Further internal variable upgrade from long -> size_tjan.nijtmans2021-02-262-24/+25
| | |
* | | Increase some (internal) variables from int/long to long/size_t. On the way ↵jan.nijtmans2021-02-262-30/+28
| | | | | | | | | | | | to allow bigger blocks in the threaded allocator
* | | Fix "make checkstubs": A few more MODULE_SCOPE libtommath functionsjan.nijtmans2021-02-243-2/+10
| | |
* | | Fix typo, eliminate type-castjan.nijtmans2021-02-241-3/+3
| | |
* | | Merge 8.6. Fix Cygwin compilejan.nijtmans2021-02-235-10/+9
|\ \ \ | |/ /
| * | Merge 8.5jan.nijtmans2021-02-233-9/+9
| |\ \ | | |/
| | * Revise buffer-sizes used in GetModuleFileNameW() calls. Available ↵jan.nijtmans2021-02-233-10/+10
| | | | | | | | | | | | buffer-size reported to GetModuleFileNameW() was not always accurate
* | | Simplify implementation on Cygwin: No need to use CFG_RUNTIME_BINDIR any morejan.nijtmans2021-02-233-11/+8
| | |
* | | Merge 8.6jan.nijtmans2021-02-234-15/+52
|\ \ \ | |/ /
| * | Use _wgetenv() in stead of getenv() on Windows: The wide environment is not ↵jan.nijtmans2021-02-234-13/+49
| | | | | | | | | | | | always well-synchonized with the locale environment. Problem detected on the sebres-8-6-clock-speedup-cr2, but this branch only exposed the bug, it did not cause it.
* | | Merge 8.6jan.nijtmans2021-02-192-1/+5
|\ \ \ | |/ /
| * | Fix [7c64aa5e1a]: Another uninitialized-variable bug in BRE-mode parsing. ↵jan.nijtmans2021-02-192-1/+5
| |\ \ | | |/ | | | | | | Thanks to Tom Lane for the bug-report and the fix
| | * Fix [7c64aa5e1a]: Another uninitialized-variable bug in BRE-mode parsing. ↵jan.nijtmans2021-02-192-1/+5
| | | | | | | | | | | | Thanks to Tom Lane for the bug-report and the fix.
* | | Protect "interp limit" command better for allowed range in -millis and ↵jan.nijtmans2021-02-182-13/+13
| | | | | | | | | | | | -seconds values
* | | Merge 8.6jan.nijtmans2021-02-184-2/+38
|\ \ \ | |/ /
| * | Two new testcases for abs()jan.nijtmans2021-02-181-1/+7
| | |
| * | Performance optimization in TzsetIfNecessary() function. Cherry-picked from ↵jan.nijtmans2021-02-183-1/+34
| | | | | | | | | | | | sebres-8-6-clock-speedup-cr2 branch
| * | merge-markjan.nijtmans2021-02-170-0/+0
| |\ \ | | |/
| | * Backport 3 additional test-cases from 8.6 for TCL_UTF_MAX>3jan.nijtmans2021-02-171-7/+16
| | |
* | | Fix abs(-9223372036854775808) special-case on platforms where ↵jan.nijtmans2021-02-172-1/+13
| | | | | | | | | | | | sizeof(Tcl_WideInt) > sizeof(int64_t). Theoretical, yes, but at least add a testcase for this (expr-38.14)
* | | Fix compiler warning on non-intel CPU'sjan.nijtmans2021-02-171-0/+3
| | |
* | | Multi-arch only works on MacOS-11jan.nijtmans2021-02-171-1/+1
| | |
* | | Don't pack tcl_library/registry/pkgIndex in zip-file on UNIXjan.nijtmans2021-02-171-1/+1
| | |
* | | Fix "make dist" on UNIX, broken due to TIP #590jan.nijtmans2021-02-171-1/+1
| | |
* | | Another TIP #430 fix for cygwin: libtcl8.7.dll is installed in /usr/bin, not ↵jan.nijtmans2021-02-172-10/+7
| | | | | | | | | | | | in /usr/lib as on other platforms
* | | Don't try to use ln when creating libtcl.vfs on windows: It doesn't work for ↵jan.nijtmans2021-02-171-9/+0
| | | | | | | | | | | | encodings or msg-files (anything on a deeper level) when zipping (at least not on cygwin)
* | | Attempt to produce double-arch (x86_64 and arm) binary for MacOSjan.nijtmans2021-02-161-0/+1
| | |
* | | merge-markjan.nijtmans2021-02-160-0/+0
|\ \ \ | |/ /
| * | Fix bug in previous commit: Don't update stringPtr->numChars when doing a ↵jan.nijtmans2021-02-161-3/+0
| | | | | | | | | | | | "string reverse", because TclUtfToUCS4() doesn't count surrogate pairs as 2
* | | Merge 8.6jan.nijtmans2021-02-162-10/+45
|\ \ \ | |/ /
| * | Fix [22324bcbd]: string reverse is broken for Emoji. Thanks to Chrisian ↵jan.nijtmans2021-02-162-7/+45
| | | | | | | | | | | | Werner for bug report and POC patch.
| * | Remove unnecessary end-of-line spacing in test-casesjan.nijtmans2021-02-1629-107/+106
| | |