Differences From Artifact [03f4b9d2a8]:
- File unix/tclLoadDyld.c — part of check-in [d8a3450f12] at 2024-07-20 15:59:29 on branch unchained — Merge trunk [91c2f411e7e71552], TIP #636 (tip-636-tcl9-644), resolve all conflicts including those resulting from conflicting Tcl_Obj interface implementations, and relicense under GNU Affero General Public License. All tests pass. (user: pooryorick size: 20263) [more...]
To Artifact [1aa643acbd]:
- File unix/tclLoadDyld.c — part of check-in [e18c9ab9f6] at 2024-08-22 20:52:21 on branch unchained — Merge [f67f60d202716adf]: Fix [26870862f0]: Wrong sentinel in Tcl_SetErrorCode usage; Handle any C++-compiler as well. (user: pooryorick size: 20271) [more...]
| ︙ | |||
417 418 419 420 421 422 423 | 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 | - + |
#endif /* TCL_DYLD_USE_NSMODULE */
}
Tcl_DStringFree(&ds);
if (errMsg && (interp != NULL)) {
Tcl_SetObjResult(interp, Tcl_ObjPrintf(
"cannot find symbol \"%s\": %s", symbol, errMsg));
Tcl_SetErrorCode(interp, "TCL", "LOOKUP", "LOAD_SYMBOL", symbol,
|
| ︙ |