summaryrefslogtreecommitdiffstats
path: root/macosx/tclMacOSXFCmd.c
Commit message (Collapse)AuthorAgeFilesLines
* Backout the "dullest commit ever" (not my words ....). It breaks the build. jan.nijtmans2024-05-141-6/+6
| | | JN: Many of those changes are actually good, but there are too many changes to be able to search for a bug somewhere. Feel free to re-apply, after assuring it's really only whitespace changes. (my advise: do that after 9.0b2)
* Clean up a lot of small whitespace issues dkf2024-05-131-6/+6
| | | This is the dullest commit ever. Sorry.
* Few more spacing/formatting tweaksjan.nijtmans2024-03-201-4/+4
|\
* \ Merge 8.7 (Some Tcl_GetStringFromObj -> TclGetStringFromObj internal changes)jan.nijtmans2024-03-191-1/+1
|\ \ | |/
* | Merge 8.7jan.nijtmans2023-10-191-4/+4
|\ \ | |/
| * Handle sentinels for any C++ compilerjan.nijtmans2023-10-171-4/+4
| |
* | size_t -> Tcl_Size (twice)jan.nijtmans2023-05-091-1/+1
| |
* | Correct spelling errors in comments and documentation, but also a ↵pooryorick2023-04-121-1/+1
|\ \ | |/ | | | | non-comment corrections in history.tcl and tcltest.test.
| * Correct spelling errors in comments and documentation, but also a non-comment pooryorick2023-04-121-1/+1
| | | | | | corrections in history.tcl and tcltest.test.
* | Merge 9.0jan.nijtmans2023-03-071-3/+3
|\ \
| * | More -1 -> TCL_INDEX_NONEjan.nijtmans2023-03-051-3/+3
| | |
* | | Fix Tcl_UtfToExternalDStringEx call in macos codeapnadkarni2023-03-011-1/+1
|/ /
* | Merge 8.7jan.nijtmans2022-11-241-1/+1
|\ \ | |/
| * Use some more TCL_INDEX_NONE and Tcl_Sizejan.nijtmans2022-11-241-1/+1
| |
* | Forgot one TCL_OBJTYPE_V0jan.nijtmans2022-11-101-1/+2
| |
* | Merge 8.7jan.nijtmans2022-07-191-6/+6
|\ \ | |/
| * Make a start converting -1 -> TCL_INDEX_NONE where appropriatejan.nijtmans2022-07-191-6/+6
| |
* | Fix compiler warnings, due to the use of macro'sjan.nijtmans2022-03-211-1/+1
| |
* | Merge 8.7jan.nijtmans2021-10-081-2/+2
|\ \ | |/
| * Change "IntRep" to "InternalRep", as discussed in the Tcl Core mailing listjan.nijtmans2021-10-061-2/+2
| |
* | Merge 8.7, resolve conflictsjan.nijtmans2021-01-111-1/+1
|\ \ | |/
* | Merge 8.7jan.nijtmans2020-12-081-1/+1
|\ \ | |/
| * Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵jan.nijtmans2020-12-081-1/+1
| | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
* | Merge 8.7jan.nijtmans2020-10-131-2/+2
|\ \ | |/
| * Merge 8.6jan.nijtmans2020-10-131-2/+2
| |\
| | * Code cleanup: less of use "register" keyword, and better use of typecastsjan.nijtmans2020-08-111-1/+1
| | |
| | * Eliminate many unnecessary type-casts, mostly (size_t) when value is already ↵jan.nijtmans2020-08-111-1/+1
| | | | | | | | | | | | size_t or int
| | * MacOSX: add some type-casts, improving C++ compatibility. Make sure that ↵jan.nijtmans2020-06-281-4/+4
| | | | | | | | | | | | strstr and strtoul() are not configured as invalid: Mac is more strict in exact function signatures. Backported from 8.7
* | | Change a few variables from type "int" to "size_t". Always test TCL_UTF_MAX ↵jan.nijtmans2020-04-201-1/+1
| | | | | | | | | | | | for <= 3 or > 3, because that's the only 2 flavours we really have.
* | | Merge 8.7jan.nijtmans2020-02-281-2/+2
|\ \ \ | |/ /
| * | Merge tip-548jan.nijtmans2019-08-151-2/+2
| |\ \
| * | | Merge tip-548 (since using the *WChar* functions leads to less type-casts in ↵jan.nijtmans2019-08-031-2/+2
| | | | | | | | | | | | | | | | | | | | c++) Als finish implementaton for MacOSX
* | | | Merge 8.7jan.nijtmans2019-08-141-2/+2
|\ \ \ \ | | |/ / | |/| |
| * | | Remove "register" keyword in various places. Also add some type-casts to ↵jan.nijtmans2019-08-141-2/+2
| |/ / | | | | | | | | | help C++ compatibility.
* | | Merge 8.7jan.nijtmans2019-04-011-5/+5
|\ \ \ | |/ /
| * | Modify testbytestring such that is only produces pure byte-arrays, if not it ↵jan.nijtmans2019-04-011-5/+5
| | | | | | | | | | | | | | | errors out. Modify Tcl_NewIntObj/Tcl_NewBooleanObj -> Tcl_NewWideIntObj. Less references to "long" datatype.
* | | Merge 8.7jan.nijtmans2019-03-011-1/+1
|\ \ \ | |/ /
| * | More use of TclHasIntRep() macro. Add vfs build director to fossil ignore-globjan.nijtmans2019-03-011-1/+1
| | |
| * | More use of (efficient) TclHasIntRep() macro. Also eliminate many (size_t) ↵jan.nijtmans2019-02-271-1/+1
| | | | | | | | | | | | and (unsigned) type-casts, which don't make sense any more.
* | | More size_t-related consolidations. Now regexp can handle strings >2GB and ↵jan.nijtmans2019-02-051-2/+3
| | | | | | | | | | | | more. Remove many type-casts which are not necessary any more.
* | | Implement TIP 445dgp2018-11-131-16/+20
|\ \ \ | |/ /
| * | merge trunkdgp2017-06-161-1/+1
| |\ \
| * \ \ merge trunkdgp2016-11-161-3/+3
| |\ \ \
| * \ \ \ merge trunkdgp2016-07-091-1/+1
| |\ \ \ \
| * \ \ \ \ merge trunkdgp2016-07-021-1/+1
| |\ \ \ \ \
| * | | | | | Update Tcl_InitStringRep callers to handle OOM condition.dgp2016-03-241-2/+5
| | | | | | |
| * | | | | | Revise "osType" Tcl_ObjType to use new routine.dgp2016-03-241-15/+16
| | | | | | |
* | | | | | | merge trunkjan.nijtmans2018-10-041-1/+1
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | |
* | | | | | | Change ckalloc and friends to Tcl_Alloc and friends. Add two defines, ↵jan.nijtmans2018-09-011-1/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | TCL_IO_FAILURE and TCL_NO_LENGTH (experimental, still open to be renamed following discussion)
* | | | | | merge core-8-6-branchjan.nijtmans2017-06-071-1/+1
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | / | | |_|_|/ | |/| | |