summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* There is no "eq" command any morejan.nijtmans2021-04-071-4/+4
|
* Merge forkjan.nijtmans2021-04-071-0/+8
|\
| * Tests demonstrating the bug. Work on a fix can go here.dgp2020-04-261-0/+8
| |
* | More test-cases showing the bugjan.nijtmans2021-04-073-0/+24
| |
* | A few more Package -> Library renamings (testcases only)jan.nijtmans2021-04-071-8/+8
| |
* | A few missing renamingsjan.nijtmans2021-04-074-6/+6
| |
* | TIP #595 (for Tcl 8.7) part 1: just rename Tcl_StaticPackage to ↵jan.nijtmans2021-04-0726-187/+210
| | | | | | | | Tcl_StaticLibrary, Tcl_PackageInitProc to Tcl_LibraryInitProc and Tcl_PackageUnloadProc to Tcl_LibraryUnloadProc. Adapt documentation, mentioning that the old names are now deprecated.
* | Revert previous commit, and add comments why it's wrong.jan.nijtmans2021-04-071-1/+5
| |
* | Replace simple refCount decrement with the proper decrementing function.pooryorick2021-04-051-1/+1
| |
* | tclZipfs.c:1857:33: warning: request for implicit conversion from ‘void ↵jan.nijtmans2021-04-051-2/+2
| | | | | | | | *’ to ‘char *’ not permitted in C++ [-Wc++-compat]
* | Rename exported symbol "Tcl_StaticPackage" to "Tcl_StaticLibrary". Still ↵jan.nijtmans2021-04-048-24/+25
| | | | | | | | undocumented, to be formalized by TIP #595. Tcl_StaticPackage() still works the same
* | Fix [https://github.com/tcltk/tcl/runs/2263266926|failing test-cases] with ↵jan.nijtmans2021-04-046-160/+110
| | | | | | | | --enable-symbols=mem build by reverting the series of commits that caused the memory-leak
* | Update code comments.pooryorick2021-04-031-33/+24
| |
* | Changes to code comments.pooryorick2021-04-031-8/+9
| |
* | When a namesapce is deleted delete all namespaces under it before making anypooryorick2021-04-032-59/+84
| | | | | | modifictions to it.
* | Remove suspected inadvertent copypasta from test.pooryorick2021-04-031-2/+2
| |
* | Use TclCleanupCommandMacro instead of just decrementing the reference count.pooryorick2021-04-031-1/+1
| |
* | OO cleanup fix that passes test 11.7.pooryorick2021-04-032-19/+17
| |
* | New test for OO cleanup: routine for object gets deleted before namespace ↵pooryorick2021-04-031-1/+36
| | | | | | | | | | deletion is complete.
* | Clean up the notifier code to not spread the hooks quite so widelydkf2021-04-0315-1564/+1915
|\ \
| * | Don't do double definition; code was moved to tclInt.h previously.dkf2021-04-021-27/+0
| | |
| * | Forgot a place to #ifndef outdkf2021-04-011-6/+8
| | |
| * | Don't define Tcl_CreateFileHandler or Tcl_DeleteFileHandler on Windows.dkf2021-03-311-66/+76
| | |
| * | merge core-8-branchdkf2021-03-3155-1200/+1335
| |\ \
| * | | Refactoring, ahoydkf2021-03-3013-1413/+1719
| | | |
| * | | Start of doing a clean up of the notifier code.dkf2021-03-217-218/+278
| | | | | | | | | | | | | | | | | | | | This originated as trying to stop macOS builds from doing silly warnings during a static build, but I noticed that there were common patterns that belong in generic code instead of being repeated in each of the platform-specific pieces.
* | | | Merge 8.6jan.nijtmans2021-04-011-18/+33
|\ \ \ \ | |_|/ / |/| | |
| * | | Follow-up to [15c7b4f93e]: "Implement TCL_ENCODING_STOPONERROR flag for ↵jan.nijtmans2021-04-011-6/+6
| | | | | | | | | | | | | | | | UtfToUtf encoder/decoder". Only do this check when pureNullMode == 0, otherwise we violate EIAS.
* | | | Add 3 undocumented #defines. To be formalized by TIP #595 (currently being ↵jan.nijtmans2021-03-311-0/+5
| | | | | | | | | | | | | | | | voted on)
* | | | RFE 4b4830eb54: reflected channel truncate methodjan.nijtmans2021-03-302-3/+110
|\ \ \ \
| * | | | Proposed implementation of RFE [4b4830eb54]jan.nijtmans2021-03-182-5/+111
| | | | |
* | | | | Improve documentation for exec and open, especially in relation to binary ↵dkf2021-03-302-1/+38
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | pipelines
| * | | | Improve documentation for exec and open, especially in relation to binary ↵dkf2021-03-302-2/+40
| |\ \ \ \ | | | | | | | | | | | | | | | | | | pipelines
| | * | | | Improve documentation for exec and open, especially in relation to binary ↵dkf2021-03-302-3/+62
| | | | | | | | | | | | | | | | | | | | | | | | pipelines
* | | | | | Thanks to TIP #587, convert many escapes in the testcases into the actual ↵jan.nijtmans2021-03-3045-1017/+1004
| | | | | | | | | | | | | | | | | | | | | | | | (UTF-8) character.
* | | | | | merge-markjan.nijtmans2021-03-300-0/+0
|\ \ \ \ \ \ | |/ / / / /
| * | | | | remove useless save/restorejan.nijtmans2021-03-301-2/+0
| | | | | |
* | | | | | Change TCL_ENCODING_EXTERNAL flag into TCL_ENCODING_MODIFIED, but with ↵jan.nijtmans2021-03-281-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | opposite meaning. Simplify code.
* | | | | | Rename MODULESCOPE TclGetLoadedPackagesEx() to TclGetLoadedLibraries()jan.nijtmans2021-03-225-7/+7
| | | | | |
* | | | | | merge-markjan.nijtmans2021-03-220-0/+0
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge 8.5jan.nijtmans2021-03-221-1/+1
| |\ \ \ \ \ | | |/ / / /
| | * | | | Fix incorrect comment: underscore ('_') is allowed in a packageNamejan.nijtmans2021-03-221-1/+1
| | | | | |
* | | | | | Rename internal variables, making it more clear that tclLoad.c is not part ↵jan.nijtmans2021-03-221-162/+162
| | | | | | | | | | | | | | | | | | | | | | | | of Tcl's "package" mechanism.
* | | | | | merge-markjan.nijtmans2021-03-210-0/+0
|\ \ \ \ \ \ | |/ / / / / | | | | / / | |_|_|/ / |/| | | |
| * | | | Implement TCL_ENCODING_STOPONERROR flag for UtfToUtf encoder/decoder. ↵jan.nijtmans2021-03-211-7/+25
| | | | | | | | | | | | | | | | | | | | Backported from 8.7
* | | | | Fix [0221b993a1]: Tcl command [update idletasks] doesn't skip main loop in ↵jan.nijtmans2021-03-191-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Tcl_DoOneEvent
| * | | | | Suggested fix for [0221b993a1]: Tcl command [update idletasks] doesn't skip ↵jan.nijtmans2021-03-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | main loop in Tcl_DoOneEvent
* | | | | | Fully implement TCL_ENCODING_STOPONERROR flag for Utf2Utf encoder/decoder.jan.nijtmans2021-03-191-3/+8
| | | | | |
* | | | | | Merge 8.6jan.nijtmans2021-03-1919-261/+259
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Change Tcl_StaticPackage's "pkgName" argument to "prefix" and improve ↵jan.nijtmans2021-03-1910-97/+96
| | | | | | | | | | | | | | | | | | | | | | | | documentation, describing better what this argument does.