Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch initsubsystems2 Excluding Merge-Ins
This is equivalent to a diff from 0dd323deff to 78c782a997
|
2013-03-31
| ||
| 20:17 | Going forward trying to define a better Tcl_InitStubsystems() check-in: f1f393d1f0 user: jan.nijtmans tags: initsubsystems | |
|
2013-03-29
| ||
| 13:17 | revert previous 2 commits: Setting argv0 as well is not a good idea. Needs to be worked out further,... Closed-Leaf check-in: 78c782a997 user: jan.nijtmans tags: initsubsystems2 | |
| 12:46 | Always set "argv0", irrespective of the "argc" value. check-in: 6d95830845 user: jan.nijtmans tags: initsubsystems2 | |
|
2013-03-27
| ||
| 07:51 | Version with all TCL_INIT_CREATE_XXX flags back check-in: b086c08897 user: jan.nijtmans tags: initsubsystems2 | |
|
2013-03-26
| ||
| 18:00 | merge trunk so review patch/diff is smaller check-in: 0dd323deff user: dgp tags: initsubsystems | |
| 15:57 | Looks like TCL_INIT_CUSTOM (previously known as TCL_INIT_STUFF) is not a bad idea at all, provided i... check-in: a89da0d045 user: jan.nijtmans tags: initsubsystems | |
|
2013-03-22
| ||
| 23:08 | Update to tzdata2013b check-in: 2fa10e0214 user: venkat tags: trunk | |
Changes to doc/InitStubs.3.
| ︙ | |||
79 80 81 82 83 84 85 | 79 80 81 82 83 84 85 86 87 88 89 | - - - - | an exact version match or not. If \fIexact\fR is 0, then the extension is indicating that newer versions of Tcl are acceptable as long as they have the same major version number as \fIversion\fR; non-zero means that only the specified \fIversion\fR is acceptable. \fBTcl_InitStubs\fR returns a string containing the actual version of Tcl satisfying the request, or NULL if the Tcl version is not acceptable, does not support stubs, or any other error condition occurred. |
Changes to doc/InitSubSyst.3.
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | - + - + - + - - + - + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - - + + + + - - + - - - - - + + + + + + + + + + - - + + + + + - - + + + + + + | '\" |
Changes to generic/tcl.h.
| ︙ | |||
2407 2408 2409 2410 2411 2412 2413 | 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 | + - - + + + | /* * TODO - tommath stubs export goes here! */ /* Tcl_InitSubsystems, see TIP #414 */ #define TCL_INIT_CREATE (3) /* Call Tcl_CreateInterp(), and set argc/argv */ |
| ︙ |
Changes to generic/tclEncoding.c.
| ︙ | |||
1422 1423 1424 1425 1426 1427 1428 | 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 | - - - - - - - - - - - - - - - + + - + + - - + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + | * Side effects: * The absolute pathname for the application is computed and stored to be * returned later by [info nameofexecutable]. The system encoding is * determined and stored to be returned later by [encoding system] * *--------------------------------------------------------------------------- */ |
| ︙ |
Changes to generic/tclStubLib.c.
| ︙ | |||
69 70 71 72 73 74 75 | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | - - - - - - - - - - - + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - |
if (!stubsPtr || (stubsPtr->magic != TCL_STUB_MAGIC)) {
iPtr->result = "interpreter uses an incompatible stubs mechanism";
iPtr->freeProc = TCL_STATIC;
return NULL;
}
|
| ︙ |
Changes to generic/tclZlib.c.
| ︙ | |||
3887 3888 3889 3890 3891 3892 3893 | 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 | + - - + + + |
Tcl_Interp *interp,
int mode,
int format,
int level,
Tcl_Obj *dictObj,
Tcl_ZlibStream *zshandle)
{
if (interp) {
|
| ︙ | |||
3953 3954 3955 3956 3957 3958 3959 | 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 | + - - + + + + - - + + + |
Tcl_ZlibDeflate(
Tcl_Interp *interp,
int format,
Tcl_Obj *data,
int level,
Tcl_Obj *gzipHeaderDictObj)
{
if (interp) {
|
| ︙ |