diff options
| author | dgp <dgp@users.sourceforge.net> | 2023-10-25 17:57:00 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2023-10-25 17:57:00 (GMT) |
| commit | 7c3322a2ee80527c01e51cde6a9681d96228fab3 (patch) | |
| tree | d0c3e1464c7149be9201d9d89e969c551f81d802 /generic/tclStubInit.c | |
| parent | 0b4cf50a01e85aca7d33768c49c90511ed613082 (diff) | |
| download | tcl-7c3322a2ee80527c01e51cde6a9681d96228fab3.zip tcl-7c3322a2ee80527c01e51cde6a9681d96228fab3.tar.gz tcl-7c3322a2ee80527c01e51cde6a9681d96228fab3.tar.bz2 | |
Since TIP 258 (2005) and development efforts leading up to it (2004), the
Tcltest package has not been a caller of routines Tcl(Get|Set)LibraryPath,
so there's no longer a need for those to be in the internal stubs table.
After they are removed from the table, they no longer need to exist at all.
Diffstat (limited to 'generic/tclStubInit.c')
| -rw-r--r-- | generic/tclStubInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 97f37b0..8ba5e4e 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -932,8 +932,8 @@ static const TclIntStubs tclIntStubs = { TclHandleRelease, /* 149 */ TclRegAbout, /* 150 */ TclRegExpRangeUniChar, /* 151 */ - TclSetLibraryPath, /* 152 */ - TclGetLibraryPath, /* 153 */ + 0, /* 152 */ + 0, /* 153 */ 0, /* 154 */ 0, /* 155 */ TclRegError, /* 156 */ |
