Tcl Source Code

Check-in [8c5d02ccf4]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Get the updated error message
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | novem-remove-string-result
Files: files | file ages | folders
SHA1: 8c5d02ccf4899bb002c46a1e3a2fde39fea0415f
User & Date: dgp 2012-11-29 16:52:45.165
Context
2012-11-29
17:03
missed bit of merge check-in: f8c0bcf085 user: dgp tags: novem-remove-string-result
16:52
Get the updated error message check-in: 8c5d02ccf4 user: dgp tags: novem-remove-string-result
16:26
Merge bug-3588687 check-in: e738bbbfd9 user: dgp tags: novem-remove-string-result
Changes
Unified Diff Ignore Whitespace Patch
Changes to generic/tclStubLib.c.
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
     * compatibility testing with all deployed stubs-enabled extensions.  That is,
     * there is no need to change the value of TCL_STUB_MAGIC when transitioning
     * from the Tcl 8 stubs table to the Tcl 9 stubs table, so long as they 
     * share just their first slot in common.
     */

    iPtr->legacyResult
	    = "This interpreter does not support stubs-enabled extensions.";
    iPtr->legacyFreeProc = TCL_STATIC;
    return NULL;
}

/*
 * Use our own isdigit to avoid linking to libc on windows
 */







|







64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
     * compatibility testing with all deployed stubs-enabled extensions.  That is,
     * there is no need to change the value of TCL_STUB_MAGIC when transitioning
     * from the Tcl 8 stubs table to the Tcl 9 stubs table, so long as they 
     * share just their first slot in common.
     */

    iPtr->legacyResult
	    = (char *) "interpreter uses an incompatible stubs mechanism";
    iPtr->legacyFreeProc = TCL_STATIC;
    return NULL;
}

/*
 * Use our own isdigit to avoid linking to libc on windows
 */